Initial commit

This commit is contained in:
Kevin Keogh
2018-07-02 15:45:49 -04:00
parent 60b3954a3b
commit fd817f8811
28 changed files with 809 additions and 0 deletions

20
problem-52.py Normal file
View File

@@ -0,0 +1,20 @@
if __name__ == '__main__':
i = 1
while True:
two = str(2 * i)
three = str(3 * i)
four = str(4 * i)
five = str(5 * i)
six = str(6 * i)
if ( sorted(two) \
== sorted(three) \
== sorted(four) \
== sorted(five) \
== sorted(six)
):
break
i += 1
print(i, two, three, four, five, six)