Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Counting Tiles by tokiojapan55
from math import ceil
def checkio(radius):
inner,outer,r = 0,0,ceil(radius)
for x,y in [(x,y) for x in range(r) for y in range(r)]:
if (x+1)**2+(y+1)**2
June 15, 2020
Comments: