Implemented nth permutation function.

This commit is contained in:
2019-07-16 13:43:08 -04:00
parent d94fc90600
commit de21284672
2 changed files with 29 additions and 4 deletions

7
python/e036.py Normal file
View File

@@ -0,0 +1,7 @@
def euler_036():
return 0
if __name__ == "__main__":
print("e036.py: {}".format(euler_036()))
assert(euler_036() == 55)