This package installs the following seven functions:
Which returns sum of all items in array
Which returns a given word in reverse
Which return nth term in Fibonacci sequence
Which returns the factorial of a given number [n! == n(n-1)!]
It bubbles up the largest(or smallest), then the 2nd largest and the the 3rd and so on to the end of the list. Each bubble up takes a full sweep through the list. Then return array of items, sorted in ascending order
Which return array of items, sorted in ascending order
first we select a pivot element from the list. then create two lists, one containing elements less than the pivot and the other containing elements higher than the pivot. It then sorts the two lists and join them with the pivot in between. Then return array of items, sorted in ascending order
'python setup.py sdist'
'pip install github+https://github.com/Mangethe/AnalyseHackathon'
'pip install -- upgrade git+https//github.com/Mangethe/AnalyseHackathon'