Skip to content

Instantly share code, notes, and snippets.

View akashsky44's full-sized avatar
💻
Busy in writing miles of Code.

Akash Kumar akashsky44

💻
Busy in writing miles of Code.
View GitHub Profile
@nandajavarma
nandajavarma / Timsort
Created February 17, 2017 19:47
Timsort implementation using Python
#!/usr/lib/python
# -*- coding: utf-8 -*-
#
# This is a re-implementation of Python's timsort in Python
# itself. This is purely for learning purposes. :)
# References: [
# https://en.wikipedia.org/wiki/Timsort,
# http://wiki.c2.com/?TimSort
# ]
#