Skip to content

Commit 4875c01

Browse files
authored
Update Readme.md
Added the Instructions for Running code.
1 parent 2ab0f96 commit 4875c01

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

searchingAlgo/linearSearch/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,24 @@
2020
if element = n
2121
return i
2222
return -1
23+
24+
### Instruction for Running code:
25+
- C
26+
27+
gcc LinearSearch.c <br>
28+
./a.out
29+
30+
- Cpp
31+
32+
33+
g++ LinearSearch.cpp<br>
34+
./a.out
35+
36+
- JavaScript
37+
38+
39+
node LinearSearch.js
40+
41+
- Python
42+
43+
python3 LinearSearch\.py

0 commit comments

Comments
 (0)