September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
13
Task/Permutations/Python/permutations-5.py
Normal file
13
Task/Permutations/Python/permutations-5.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
def permutations(xs):
|
||||
ac = [[]]
|
||||
for x in xs:
|
||||
ac_new = []
|
||||
for ts in ac:
|
||||
for n in range(0,ts.__len__()+1):
|
||||
new_ts = ts[:] #(shallow) copy of ts
|
||||
new_ts.insert(n,x)
|
||||
ac_new.append(new_ts)
|
||||
ac=ac_new
|
||||
return ac
|
||||
|
||||
print(permutations([1,2,3,4]))
|
||||
Loading…
Add table
Add a link
Reference in a new issue