adding 22 and 24

This commit is contained in:
shivg7706
2018-04-26 08:53:17 +05:30
parent 4b58a88732
commit ab9ee4064e
2 changed files with 540 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from itertools import permutations
def main():
result=list(map("".join, permutations('0123456789')))
print(result[999999])
if __name__ == '__main__':
main()