Skip to content

Commit ce13b73

Browse files
committed
Added links to files in README.md
1 parent d014f31 commit ce13b73

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,47 +6,47 @@ These programs can be imported and used as modules in your programs.
66

77
#### Programs:
88

9-
1. matrix_operations.py
9+
1. [matrix_operations.py](https://github.com/VarunS2002/Python-Data-Structures-Algorithms/blob/master/matrix_operations.py)
1010
- Mathematical operations on Matrices
1111
- Addition
1212
- Subtraction
1313
- Multiplication
1414
- Transpose
1515

16-
2. stack.py
16+
2. [stack.py](https://github.com/VarunS2002/Python-Data-Structures-Algorithms/blob/master/stack.py)
1717
- Stack Data Structure
1818
- Push
1919
- Pop
2020
- Top
2121

22-
3. binary_tree_traversal.py
22+
3. [binary_tree_traversal.py](https://github.com/VarunS2002/Python-Data-Structures-Algorithms/blob/master/binary_tree_traversal.py)
2323
- Traverse Binary Trees
2424
- Without any order
2525
- Pre order
2626
- In order
2727
- Post order
2828

29-
4. tower_of_hanoi_stack.py
29+
4. [tower_of_hanoi_stack.py](https://github.com/VarunS2002/Python-Data-Structures-Algorithms/blob/master/tower_of_hanoi_stack.py)
3030
- Tower of Hanoi puzzle
3131
- Uses Stack DS from stack.py as Rods
3232
- Display Steps
3333

34-
5. factorial.py
34+
5. [factorial.py](https://github.com/VarunS2002/Python-Data-Structures-Algorithms/blob/master/factorial.py)
3535
- Factorial of a Positive Integer
3636
- Iteration (for & while)
3737
- Recursion
3838

39-
6. factors.py
39+
6. [factors.py](https://github.com/VarunS2002/Python-Data-Structures-Algorithms/blob/master/factors.py)
4040
- Factors of Non-Zero Integers
4141
- Iteration (for & while)
4242
- Recursion
4343

44-
7. permutations_combinations.py
44+
7. [permutations_combinations.py](https://github.com/VarunS2002/Python-Data-Structures-Algorithms/blob/master/permutations_combinations.py)
4545
- Permutations & Combinations
4646
- nPr
4747
- nCr
4848
- Uses factorial.py for calculating factorials
4949

50-
8. pascal_triangle.py
50+
8. [pascal_triangle.py](https://github.com/VarunS2002/Python-Data-Structures-Algorithms/blob/master/pascal_triangle.py)
5151
- Pascal's Triangle
5252
- Uses permutations_combinations.py for calculating nCr

0 commit comments

Comments
 (0)