Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Chessboard solution in Creative category for Funny Addition by veky
def checkio(l):
black, white = l
chessboard = [
[black if (i+j)%2 else white for j in range(8)]
for i in range(8)]
pre_sum = sum(map(sum, chessboard))
return pre_sum >> 5
Dec. 28, 2016
Comments: