|
| 1 | +--- |
| 2 | +id: problems |
| 3 | +title: GFG easy problems |
| 4 | +sidebar_label: problems |
| 5 | +keywords: |
| 6 | + - gfg problems |
| 7 | + - gfg problems easy |
| 8 | + - gfg problems problems |
| 9 | +--- |
| 10 | + |
| 11 | + |
| 12 | +export const problems = [ |
| 13 | + { |
| 14 | + "problemName": "1. Reverse-a-linked-list", |
| 15 | + "difficulty": "easy", |
| 16 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/reverse-a-linked-list/0", |
| 17 | + "solutionLink": "#" |
| 18 | + }, |
| 19 | + { |
| 20 | + "problemName": "2. Reverse-a-doubly-linked-list", |
| 21 | + "difficulty": "easy", |
| 22 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/reverse-a-doubly-linked-list/0", |
| 23 | + "solutionLink": "#" |
| 24 | + }, |
| 25 | + { |
| 26 | + "problemName": "3. Delete-without-head-pointer", |
| 27 | + "difficulty": "easy", |
| 28 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/delete-without-head-pointer/0", |
| 29 | + "solutionLink": "#" |
| 30 | + }, |
| 31 | + { |
| 32 | + "problemName": "4. Check-for-balanced-tree", |
| 33 | + "difficulty": "easy", |
| 34 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/check-for-balanced-tree/0", |
| 35 | + "solutionLink": "#" |
| 36 | + }, |
| 37 | + { |
| 38 | + "problemName": "5. Delete-middle-of-linked-list", |
| 39 | + "difficulty": "easy", |
| 40 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/delete-middle-of-linked-list/0", |
| 41 | + "solutionLink": "#" |
| 42 | + }, |
| 43 | + { |
| 44 | + "problemName": "6. Intersection-of-two-sorted-linked-lists", |
| 45 | + "difficulty": "easy", |
| 46 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/intersection-of-two-sorted-linked-lists/0", |
| 47 | + "solutionLink": "#" |
| 48 | + }, |
| 49 | + { |
| 50 | + "problemName": "7. DFS-traversal-of-graph", |
| 51 | + "difficulty": "easy", |
| 52 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/depth-first-traversal-for-a-graph/0", |
| 53 | + "solutionLink": "#" |
| 54 | + }, |
| 55 | + { |
| 56 | + "problemName": "8. BFS-traversal-of-graph", |
| 57 | + "difficulty": "easy", |
| 58 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/bfs-traversal-of-graph/0", |
| 59 | + "solutionLink": "#" |
| 60 | + }, |
| 61 | + { |
| 62 | + "problemName": "9. Square-root", |
| 63 | + "difficulty": "easy", |
| 64 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/square-root/0", |
| 65 | + "solutionLink": "#" |
| 66 | + }, |
| 67 | + { |
| 68 | + "problemName": "10. Implement-two-stacks-in-an-array", |
| 69 | + "difficulty": "easy", |
| 70 | + "leetCodeLink": "https://www.geeksforgeeks.org/problems/implement-two-stacks-in-an-array/0", |
| 71 | + "solutionLink": "#" |
| 72 | + } |
| 73 | +] |
| 74 | + |
| 75 | +<Table |
| 76 | + title="" |
| 77 | + data={problems} |
| 78 | + isSorted={false} |
| 79 | + collectionLink="https://www.geeksforgeeks.org/" |
| 80 | +/> |
| 81 | + |
| 82 | +Now, you can see the list of problems in a table format. You can click on the problem link to view the problem on the GFG website. You can also click on the solution link to view the solution of the problem. |
0 commit comments