aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/insertion_sort.py
blob: 9e0912dfbd2906d79eb213201823f0ffb56e193e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
# This file is licensed under the terms of the MIT License.
# See LICENSE.txt for details.

def insertion_sort(xs):
    for i in range(1, len(xs)):
        j = i
        while j > 0 and xs[j - 1] > xs[j]:
            xs[j], xs[j - 1] = xs[j - 1], xs[j]
            j -= 1
    return xs

if __name__ == '__main__':
    import sys
    print(insertion_sort(list(map(int, sys.argv[1:]))))