Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 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