This commit is contained in:
xw_y_am@tu131 2016-09-23 20:57:29 +08:00
parent c911534928
commit d240fde71e
2 changed files with 26 additions and 0 deletions

BIN
python/142/142.docx Normal file

Binary file not shown.

26
python/142/142.py Normal file
View File

@ -0,0 +1,26 @@
def m_add( x, y ):
return ( x + y ) % 4
def m_sub( x, y ):
return ( x - y ) % 4
def match( a, b, c, d, e, f ):
if m_add( a, b ) != m_add( c, d ):
return False
if m_sub( a, b ) != m_add( e, f ):
return False
if m_sub( c, d ) != m_sub( e, f ):
return False
return True
for mask in range( 64 ):
a = ( mask & 32 ) >> 5
b = ( mask & 16 ) >> 4
c = ( mask & 8 ) >> 3
d = ( mask & 4 ) >> 2
e = ( mask & 2 ) >> 1
f = ( mask & 1 )
if match( a, b, c, d, e, f ):
print( a, b, c, d, e, f )