[ create a new paste ] login | about

Link: http://codepad.org/yNtBUD6C    [ raw code | fork ]

Python, pasted on Sep 21:
1
2
3
4
5
6
isCube = False

s = int(x ** (1.0/3))
for i in range(1, s + 2):
    if i**3 == x:
        isCube = True


Create a new paste based on this one


Comments: