Skip to content

Commit d567881

Browse files
authored
Update Readme.md
Added instruction for running code.
1 parent a268e37 commit d567881

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

sortingAlgo/bubbleSort/Readme.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,15 @@ Space Complexity is **O(2)** because the variable swapped adds to the space comp
2626
It is used in the following cases where
2727
1. the complexity of the code does not matter.
2828
2. a short code is preffered.
29+
30+
### Instruction for Running code:
31+
32+
- Cpp
33+
34+
35+
g++ bubbleSort.cpp<br>
36+
./a.out
37+
38+
- Python
39+
40+
python3 bubbleSort\.py

0 commit comments

Comments
 (0)