Skip to content

Commit 38cb96b

Browse files
Create README.md
1 parent 4b82862 commit 38cb96b

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

Diff for: README.md

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# DSA in Python - Coding Ninjas
2+
3+
This repository contains solutions to coding problems related to Data Structures and Algorithms (DSA) in Python. The questions are part of the DSA in Python course by Coding Ninjas. The solutions cover various topics including recursion, object-oriented programming (OOPs), time and space complexity, linked lists, binary trees, trees, dictionaries, dynamic programming, backtracking, and more.
4+
5+
## Table of Contents
6+
7+
- [Recursion](#recursion)
8+
- [Object-Oriented Programming (OOPs)](#oops)
9+
- [Time and Space Complexity](#time-and-space-complexity)
10+
- [Linked List](#linked-list)
11+
- [Binary Tree](#binary-tree)
12+
- [Trees](#trees)
13+
- [Dictionaries](#dictionaries)
14+
- [Dynamic Programming](#dynamic-programming)
15+
- [Backtracking](#backtracking)
16+
- [And More](#and-more)
17+
18+
## Recursion
19+
20+
The repository includes solutions to recursion problems. Recursive algorithms are implemented to solve various coding challenges.
21+
22+
## OOPs
23+
24+
Object-Oriented Programming principles are applied in some of the solutions, demonstrating the use of classes and objects.
25+
26+
## Time and Space Complexity
27+
28+
The code examples showcase the analysis of time and space complexity for different algorithms, helping understand the efficiency of the solutions.
29+
30+
## Linked List
31+
32+
Linked list problems are covered, demonstrating operations and algorithms related to linked lists.
33+
34+
## Binary Tree
35+
36+
Solutions involving binary tree data structures are included, covering traversal, manipulation, and search algorithms.
37+
38+
## Trees
39+
40+
Other tree-related problems are addressed, showcasing the versatility of tree structures in various algorithms.
41+
42+
## Dictionaries
43+
44+
The use of dictionaries in Python is demonstrated in some solutions, leveraging the efficiency of dictionary data structures.
45+
46+
## Dynamic Programming
47+
48+
Dynamic programming problems are solved, providing optimized solutions through memorization and bottom-up approaches.
49+
50+
## Backtracking
51+
52+
Backtracking algorithms are implemented for solving problems involving exploration and finding solutions step by step.
53+
54+
## And More
55+
56+
Explore the repository for a wide range of coding challenges covering different aspects of Data Structures and Algorithms in Python.
57+
58+
Feel free to contribute by adding more solutions, optimizing existing ones, or suggesting improvements.
59+
60+
Happy Coding! 🚀

0 commit comments

Comments
 (0)