Skip to content

Commit feb9132

Browse files
authored
Merge pull request #4 from cirosantilli/patch-2
Fix exponentiation operator in compute function call
2 parents 21951e0 + c6201e0 commit feb9132

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Finished Problems/pe00757 - Stealthy Numbers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ def compute1(limit): #Faster for lower numbers
6363
return len(a)
6464

6565
if __name__ == "__main__":
66-
print(compute(10^14))
67-
print("--- %s seconds ---" % (time.time() - start_time))
66+
print(compute(10**14))
67+
print("--- %s seconds ---" % (time.time() - start_time))

0 commit comments

Comments
 (0)