Skip to content

Commit f187111

Browse files
committed
Updated README
1 parent 276f7c4 commit f187111

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,27 +31,27 @@ Quick Start Guide
3131

3232
* To sort your list
3333

34-
.. code:: python
34+
.. code:: python
3535
36-
from pygorithm.sorting import bubble_sort
37-
myList = [12, 4, 3, 5, 13, 1, 17, 19, 15]
38-
sortedList = bubble_sort.sort(myList)
39-
print(sortedList)
36+
from pygorithm.sorting import bubble_sort
37+
myList = [12, 4, 3, 5, 13, 1, 17, 19, 15]
38+
sortedList = bubble_sort.sort(myList)
39+
print(sortedList)
4040
4141
4242
* To get the code for function used
4343

44-
.. code:: python
44+
.. code:: python
4545
46-
from pygorithm.sorting import bubble_sort
47-
code = bubble_sort.get_code()
48-
print(code)
46+
from pygorithm.sorting import bubble_sort
47+
code = bubble_sort.get_code()
48+
print(code)
4949
5050
5151
* To get the time complexity of an algorithm
5252

53-
.. code:: python
53+
.. code:: python
5454
55-
from pygorithm.sorting import bubble_sort
56-
time_complexity = bubble_sort.time_complexities()
57-
print(time_complexity)
55+
from pygorithm.sorting import bubble_sort
56+
time_complexity = bubble_sort.time_complexities()
57+
print(time_complexity)

0 commit comments

Comments
 (0)