Skip to content

Commit 940b2bd

Browse files
committed
added solution links for problems page
1 parent b1c64a5 commit 940b2bd

12 files changed

+21
-21
lines changed

dsa-problems/gfg-problems/easy/problems.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,61 +14,61 @@ export const problems = [
1414
"problemName": "1. Reverse-a-linked-list",
1515
"difficulty": "easy",
1616
"leetCodeLink": "https://www.geeksforgeeks.org/problems/reverse-a-linked-list/0",
17-
"solutionLink": "#"
17+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/Reverse-a-linked-list"
1818
},
1919
{
2020
"problemName": "2. Reverse-a-doubly-linked-list",
2121
"difficulty": "easy",
2222
"leetCodeLink": "https://www.geeksforgeeks.org/problems/reverse-a-doubly-linked-list/0",
23-
"solutionLink": "#"
23+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/Reverse-a-doubly-linked-list"
2424
},
2525
{
2626
"problemName": "3. Delete-without-head-pointer",
2727
"difficulty": "easy",
2828
"leetCodeLink": "https://www.geeksforgeeks.org/problems/delete-without-head-pointer/0",
29-
"solutionLink": "#"
29+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/Delete-without-head-pointer"
3030
},
3131
{
3232
"problemName": "4. Check-for-balanced-tree",
3333
"difficulty": "easy",
3434
"leetCodeLink": "https://www.geeksforgeeks.org/problems/check-for-balanced-tree/0",
35-
"solutionLink": "#"
35+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/Check-for-balanced-tree"
3636
},
3737
{
3838
"problemName": "5. Delete-middle-of-linked-list",
3939
"difficulty": "easy",
4040
"leetCodeLink": "https://www.geeksforgeeks.org/problems/delete-middle-of-linked-list/0",
41-
"solutionLink": "#"
41+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/Delete-middle-of-linked-list"
4242
},
4343
{
4444
"problemName": "6. Intersection-of-two-sorted-linked-lists",
4545
"difficulty": "easy",
4646
"leetCodeLink": "https://www.geeksforgeeks.org/problems/intersection-of-two-sorted-linked-lists/0",
47-
"solutionLink": "#"
47+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/Intersection-of-two-sorted-linked-lists"
4848
},
4949
{
5050
"problemName": "7. DFS-traversal-of-graph",
5151
"difficulty": "easy",
5252
"leetCodeLink": "https://www.geeksforgeeks.org/problems/depth-first-traversal-for-a-graph/0",
53-
"solutionLink": "#"
53+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/DFS-traversal-of-graph"
5454
},
5555
{
5656
"problemName": "8. BFS-traversal-of-graph",
5757
"difficulty": "easy",
5858
"leetCodeLink": "https://www.geeksforgeeks.org/problems/bfs-traversal-of-graph/0",
59-
"solutionLink": "#"
59+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/BFS-traversal-of-graph"
6060
},
6161
{
6262
"problemName": "9. Square-root",
6363
"difficulty": "easy",
6464
"leetCodeLink": "https://www.geeksforgeeks.org/problems/square-root/0",
65-
"solutionLink": "#"
65+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/Square-root"
6666
},
6767
{
6868
"problemName": "10. Implement-two-stacks-in-an-array",
6969
"difficulty": "easy",
7070
"leetCodeLink": "https://www.geeksforgeeks.org/problems/implement-two-stacks-in-an-array/0",
71-
"solutionLink": "#"
71+
"solutionLink": "/dsa-solutions/gfg-solutions/problems/Implement-two-stacks-in-an-array"
7272
}
7373
]
7474

dsa-solutions/gfg-solutions/problems/BFS-traversal-of-graph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: BFS-traversal-of-graph
33
title: BFS Traversal of Graph (Geeks for Geeks)
4-
sidebar_label: Problems - BFS Traversal of Graph
4+
sidebar_label: BFS Traversal of Graph
55
tags:
66
- Intermediate
77
- Graph

dsa-solutions/gfg-solutions/problems/Check-for-balanced-tree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: Check-for-balanced-tree
33
title: Check for Balanced Tree (Geeks for Geeks)
4-
sidebar_label: Problems - Check for Balanced Tree
4+
sidebar_label: Check for Balanced Tree
55
tags:
66
- Intermediate
77
- Tree

dsa-solutions/gfg-solutions/problems/DFS-traversal-of-graph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: DFS-traversal-of-graph
33
title: DFS Traversal of Graph (Geeks for Geeks)
4-
sidebar_label: Problems - DFS Traversal of Graph
4+
sidebar_label: DFS Traversal of Graph
55
tags:
66
- Intermediate
77
- Graph

dsa-solutions/gfg-solutions/problems/Delete-middle-of-linked-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: Delete-middle-of-linked-list
33
title: Delete Middle of Linked List (Geeks for Geeks)
4-
sidebar_label: Problems - Delete Middle of Linked List
4+
sidebar_label: Delete Middle of Linked List
55
tags:
66
- Intermediate
77
- Linked List

dsa-solutions/gfg-solutions/problems/Delete-without-head-pointer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: Delete-without-head-pointer
33
title: Delete without Head Pointer (Geeks for Geeks)
4-
sidebar_label: Problems - Delete without Head Pointer
4+
sidebar_label: Delete without Head Pointer
55
tags:
66
- Beginner
77
- Linked List

dsa-solutions/gfg-solutions/problems/Implement-two-stacks-in-an-array.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: Implement-two-stacks-in-an-array
33
title: Implement Two Stacks in an Array (Geeks for Geeks)
4-
sidebar_label: Problems - Implement Two Stacks in an Array
4+
sidebar_label: Implement Two Stacks in an Array
55
tags:
66
- Intermediate
77
- Stack

dsa-solutions/gfg-solutions/problems/Intersection-of-two-sorted-linked-lists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: Intersection-of-two-sorted-linked-lists
33
title: Intersection of Two Sorted Linked Lists (Geeks for Geeks)
4-
sidebar_label: Problems - Intersection of Two Sorted Linked Lists
4+
sidebar_label: Intersection of Two Sorted Linked Lists
55
tags:
66
- Intermediate
77
- Linked List

dsa-solutions/gfg-solutions/problems/Reverse-a-doubly-linked-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: Reverse-a-doubly-linked-list
33
title: Reverse a Doubly Linked List (Geeks for Geeks)
4-
sidebar_label: Problems - Reverse a Doubly LinkedList
4+
sidebar_label: Reverse a Doubly LinkedList
55
tags:
66
- Beginner
77
- Doubly Linked List

dsa-solutions/gfg-solutions/problems/Reverse-a-linked-list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: Reverse-a-linked-list
33
title: Reverse a Linked List (Geeks for Geeks)
4-
sidebar_label: Problems - Reverse a LinkedList
4+
sidebar_label: Reverse a LinkedList
55
tags:
66
- Beginner
77
- Linked List

dsa-solutions/gfg-solutions/problems/Square-root.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
id: Find-the-square-root
33
title: Find the Square Root (Geeks for Geeks)
4-
sidebar_label: Problems - Find the Square Root
4+
sidebar_label: Find the Square Root
55
tags:
66
- Beginner
77
- Math

dsa-solutions/gfg-solutions/problems/_category_.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"label": "Easy problems GFG",
3-
"position": 1,
3+
"position": 10,
44
"link": {
55
"type": "generated-index",
66
"description": "Solutions categorised by Problems in Easy problem folder"

0 commit comments

Comments
 (0)