add 142
This commit is contained in:
parent
c911534928
commit
d240fde71e
BIN
python/142/142.docx
Normal file
BIN
python/142/142.docx
Normal file
Binary file not shown.
26
python/142/142.py
Normal file
26
python/142/142.py
Normal 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 )
|
Loading…
x
Reference in New Issue
Block a user