You are viewing a single comment's thread. Return to all comments →
def movingTiles(l, s1, s2, queries):
F = [] for i in queries: Q_slope = math.sqrt(i + i) S_Diagonal = math.sqrt(l**2 + l**2) F.append((S_Diagonal-Q_slope)/abs(s1-s2)) return (F)
Seems like cookies are disabled on this browser, please enable them to open this website
Sherlock and Moving Tiles
You are viewing a single comment's thread. Return to all comments →
def movingTiles(l, s1, s2, queries):