5 lines
No EOL
111 B
Python
5 lines
No EOL
111 B
Python
def ok(echiquier,i,j):
|
|
for col in range(j):
|
|
if echiquier[i][col] == 1:
|
|
return False
|
|
return True |