Skip to content
Prev Previous commit
Next Next commit
check
  • Loading branch information
Variiiest authored Oct 9, 2022
commit d1a5ae9370252807e7ec55973c370740cb40d050
6 changes: 2 additions & 4 deletions maths/weird_number.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rom math import sqrt
from math import sqrt

def factors(n):

Expand Down Expand Up @@ -56,10 +56,8 @@ def weird(n):
else:
return False


def main():
n = 70

n = 70
if (weird(n)):
print("Weird Number")
else:
Expand Down