Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pawn Brotherhood by mijalskihubert
def safe_pawns(pawns):
safe=0
i=0
zabx=[0 for x in range(8)]
zaby=[0 for x in range(8)]
for x in pawns:
pozycjax=ord(x[0])
pozycjay=int(x[1])
for z in pawns:
pozycja2x=ord(z[0])
pozycja2y=int(z[1])
if(pozycjay==pozycja2y+1):
if(pozycjax-1==pozycja2x or pozycjax+1==pozycja2x):
j=0
przejsc=True
while(j
Nov. 2, 2016