We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b58a88 commit ab9ee40Copy full SHA for ab9ee40
Project Euler/Problem 24/sol1.py
@@ -0,0 +1,7 @@
1
+from itertools import permutations
2
+def main():
3
+ result=list(map("".join, permutations('0123456789')))
4
+ print(result[999999])
5
+
6
+if __name__ == '__main__':
7
+ main()
0 commit comments