Skip to content

Commit 1b747b3

Browse files
Merge pull request kunal-kushwaha#387 from darecoder/ekta-assignments
Added easy-medium recursion problems
2 parents c9c560a + da8881c commit 1b747b3

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

assignments/10-recursion.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
- [Write a recursive function that returns the factorial of a number.](https://www.hackerrank.com/challenges/30-recursion/problem) `HackerRank`
3737
- [Write a recursive function to check whether an array is sorted or not.](https://www.geeksforgeeks.org/program-check-array-sorted-not-iterative-recursive) `GFG`
3838
- [Number of Steps to Reduce a Number to Zero.](https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/) `leetcode`
39+
- [Check for balanced paranthesis using recursion without stack.](https://www.geeksforgeeks.org/check-for-balanced-parenthesis-without-using-stack/) `GFG`
40+
- [Remove consecutive duplicate characters from a string.](https://www.geeksforgeeks.org/remove-consecutive-duplicates-string/) `GFG`
41+
- [Print all possible palindromic partitions of a string.](https://www.geeksforgeeks.org/given-a-string-print-all-possible-palindromic-partition/) `GFG`
42+
- [Power Set of permutations of a string in Lexicographic order.](https://www.geeksforgeeks.org/powet-set-lexicographic-order/) `GFG`
3943

4044
## Medium
4145
- [Find Kth Bit in Nth Binary String](https://leetcode.com/problems/find-kth-bit-in-nth-binary-string/) `leetcode`
@@ -49,7 +53,10 @@
4953
- [Divisible Subset](https://www.codechef.com/problems/DIVSUBS) `Codechef`
5054
- [Perfect squares](https://leetcode.com/problems/perfect-squares/)`leetcode`
5155
- [decode string](https://leetcode.com/problems/decode-string/)`leetcode`
52-
- [find the winner of the circular game](https://leetcode.com/problems/find-the-winner-of-the-circular-game/)`leetcode`
56+
- [find the winner of the circular game](https://leetcode.com/problems/find-the-winner-of-the-circular-game/) `leetcode`
57+
- [Different ways to add parantheses in the expression](https://leetcode.com/problems/different-ways-to-add-parentheses/) `leetcode`
58+
- [Letter Combinations of a Phone Number](https://leetcode.com/problems/letter-combinations-of-a-phone-number/) `leetcode`
59+
- [Predict the winner.](https://leetcode.com/problems/predict-the-winner/) `leetcode`
5360

5461
## Hard
5562
- [Parsing A Boolean Expression](https://leetcode.com/problems/parsing-a-boolean-expression/) `leetcode`

0 commit comments

Comments
 (0)