Showing posts from April, 2016

Bubble sort in python

Sample code for Bubble sort in Python #!/bin/python import sys print "Enter number of numbers" n = int ( raw_input () . strip()) print "Enter numbers separated by space" a = map ( int , raw_input () . strip() . split( &#…

Load More
That is All