Skip to content

Commit

Permalink
DSAday1problems
Browse files Browse the repository at this point in the history
  • Loading branch information
33arsenic75 committed May 27, 2024
1 parent 658a583 commit 228e12a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions problem-of-the-day/day01/dsa.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# DSA Problem of the Day

## Implementation and Array Manipulation

Today, you should learn about **Implementation and Array Manipulation** . These are fundamental concepts in Data Structures and Algorithms (DSA) that are crucial for solving a wide range of problems efficiently.

Many companies ask questions about array manipulation and implementation techniques in coding interviews and online tests.

To begin, follow [LeetCode](https://leetcode.com/) and solve the following problems. They will help you understand and practice key concepts in array manipulation:

1. [Rotate Array](https://leetcode.com/problems/rotate-array/?envType=problem-list-v2&envId=mvdumf1t):- Try Implementing it in O(1) Space Complexity
2. [Elimination Game](https://leetcode.com/problems/elimination-game/description/?envType=problem-list-v2&envId=mvdumf1t) :- Implement Recursive as well as Iterative Solution
3. [Add Digits](https://leetcode.com/problems/add-digits/description/?envType=problem-list-v2&envId=mvdumf1t):- Can you do it in O(1) Time Complexity ?
4. [Stone Game](https://leetcode.com/problems/stone-game/description/?envType=problem-list-v2&envId=mvdumf1t):- Can you do it in O(1) Time Complexity


We'll cover more topics in DSA in the following weeks, so it is recommended you try to complete these problems as soon as possible.

**Note:** We will be adding solutions to these problems in the upcoming days, so do check back regularly.

0 comments on commit 228e12a

Please sign in to comment.