diff options
Diffstat (limited to 'progs/a64.py')
-rw-r--r-- | progs/a64.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/progs/a64.py b/progs/a64.py new file mode 100644 index 0000000..73b23fd --- /dev/null +++ b/progs/a64.py @@ -0,0 +1,5 @@ +def move_last(num_list):
+ a = [num_list[0] for i in range(num_list.count(num_list[0]))]
+ x = [ i for i in num_list if i != num_list[0]]
+ x.extend(a)
+ return (x)
\ No newline at end of file |