Skip to content

Commit 0a9be2f

Browse files
Utkarsh MishraUtkarsh Mishra
authored andcommitted
site updated
1 parent a78c7d8 commit 0a9be2f

30 files changed

+151
-24
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Run the following command to install the required dependencies.
8484

8585
6. Stage your changes and commit
8686

87-
```css
87+
```yml
8888
git add -a
8989

9090
git commit -m "<your_commit_message>"

lessons/assignment.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
---
22
path: "/assignment"
33
title: "Assignments"
4-
order: "22A"
4+
order: "24A"
55
section: "Assignments & Practise Question"
66
description: "practise some standard question"
77
icon: "question"
88
---
9+
10+
This section will consist some leetcode questions and some practise questions.
11+
All the solutions will be in [LeetCode](https://github.com/utkarsh1504/leetcode-solutions) repository.
12+
13+
## Leetcode Question
14+
15+
The following is a list of leetcode questions.
16+
17+
### Arrays -
18+
19+
- [1. Two Sum](https://leetcode.com/problems/two-sum/)

lessons/backtrack-maze.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
path: "/backtrack-maze"
3+
title: "Maze Problems"
4+
order: "9E"
5+
section: "BackTracking In Java"
6+
description: "learn about backtracking algorithms"
7+
---

lessons/backtrack-nknight.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
path: "/backtrack-nknight"
3+
title: "N Knights"
4+
order: "9D"
5+
section: "BackTracking In Java"
6+
description: "learn about backtracking algorithms"
7+
---

lessons/backtrack-sudoku.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
path: "/backtrack-sudoku"
3+
title: "Sudoku Solver"
4+
order: "9B"
5+
section: "BackTracking In Java"
6+
description: "learn about backtracking algorithms"
7+
---

lessons/backtracking.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
path: "/backtracking"
3-
title: "Intro"
4-
order: "11A"
3+
title: "Introduction to Backtracking"
4+
order: "9A"
55
section: "BackTracking In Java"
66
description: "learn about backtracking algorithms"
77
icon: "sitemap"

lessons/bitwise-operator.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
path: "/bitwise-operator"
3+
title: "Complete Bitwise Operators"
4+
order: "10B"
5+
section: "Maths for DSA"
6+
description: "learn maths required in DSA"
7+
---

lessons/bracktrack-nqueen.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
path: "/backtrack-nqueen"
3+
title: "N Queens"
4+
order: "9C"
5+
section: "BackTracking In Java"
6+
description: "learn about backtracking algorithms"
7+
---

lessons/recursive-sorts.md renamed to lessons/flow-of-recursion.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
path: "/recursive-sorts"
3-
title: "Recursive Sorts"
2+
path: "/flow-of-recursion"
3+
title: "Flow of Recursion"
44
order: "8B"
55
section: "Recursion"
66
description: "learn Recursion from scratch"

lessons/greedy.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
path: "/greedy"
3+
title: "Introduction to Greedy Algorithms"
4+
order: "20A"
5+
section: "Greedy Algorithms"
6+
description: "complete greedy algorithm"
7+
---

0 commit comments

Comments
 (0)