Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Pawn Brotherhood by RuiLima
def wingman_positions(pawn):
wingman1 = chr(ord(pawn[0]) + 1) + str(int(pawn[1]) - 1)
wingman2 = chr(ord(pawn[0]) - 1) + str(int(pawn[1]) - 1)
return (wingman1, wingman2)
def check_wingman(pawns, wingman_position):
if wingman_position in pawns:
return True
else:
return False
def safe_pawns(pawns):
safe_pawns = 0
for pawn in pawns:
wingman1, wingman2 = wingman_positions(pawn)
if check_wingman(pawns, wingman1) or check_wingman(pawns, wingman2):
safe_pawns += 1
return safe_pawns
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert safe_pawns({"b4", "d4", "f4", "c3", "e3", "g5", "d2"}) == 6
assert safe_pawns({"b4", "c4", "d4", "e4", "f4", "g4", "e5"}) == 1
July 30, 2014
Comments: