algorithms
                                
                                
                                
                                    algorithms copied to clipboard
                            
                            
                            
                        Added odd even sort algorithm in python
I have included odd even sort algorithm in python.
Impl looks good, but could you add a comment explaining the algorithm?, e.g.
"""
Odd even sort algorithm ...
Time complexity: ...
Space complexity: ...
"""
def sort(array, compare=default_compare):
    ....
Also, add test cases and a link on the README.