Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'graycode'

1377989 - gray2.py - Gray code gen'r: python graycode
  1. #!/usr/bin/python
  2.  
  3. # Gray code by iterative approach. Public domain. pearfalse.co.uk
  4.  
  5. class GrayCode:
  6.         """
  7.         Creates a GrayCode proxy object. This object is iterable.
  8.        
  9.  
1377988 - gray2.py - Iterative Gray code g: python graycode
  1. #!/usr/bin/python
  2.  
  3. # Gray code by iterative approach. Public domain. pearfalse.co.uk
  4.  
  5. class GrayCode:
  6.         """
  7.         Creates a GrayCode proxy object. This object is iterable.
  8.        
  9.  
fantasy-obligation