Skip to content

Commit 487a8ae

Browse files
authored
Merge pull request #969 from katarianikita2003/main
Adding Solution of problem 0030-Substring-with-Concatenation-of-All-Words
2 parents 729a834 + 74eb2d4 commit 487a8ae

File tree

3 files changed

+376
-4
lines changed

3 files changed

+376
-4
lines changed

dsa-solutions/lc-solutions/0000-0099/0017-Letter-Combinations-of-a-Phone-Number.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ Given a string containing digits from 2-9 inclusive, return all possible letter
3939
- **Output:** `["a","b","c"]`
4040

4141
### Constraints:
42-
4342
- `0 ≤ digits.length ≤ 4`
4443
- `0 ≤ digits.length ≤ 4digits[𝑖]`
4544
- `digits[i] is a digit in the range ['2', '9'].`
@@ -70,7 +69,6 @@ Given a string containing digits from 2-9 inclusive, return all possible letter
7069
This approach ensures that all possible combinations are generated using backtracking, and the result is returned in the desired format.
7170

7271
### Solution Code
73-
7472
#### Python
7573

7674
```python

dsa-solutions/lc-solutions/0000-0099/0017-letter-combinations-of-a-phone-number.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ Given a string containing digits from 2-9 inclusive, return all possible letter
4040
- **Output:** `["a","b","c"]`
4141

4242
### Constraints:
43-
4443
- `0 ≤ digits.length ≤ 4`
4544
- `0 ≤ digits.length ≤ 4digits[𝑖]`
4645
- `digits[i] is a digit in the range ['2', '9'].`
@@ -74,7 +73,6 @@ Given a string containing digits from 2-9 inclusive, return all possible letter
7473
This approach ensures that all possible combinations are generated using backtracking, and the result is returned in the desired format.
7574

7675
### Solution Code
77-
7876
#### Python
7977

8078
```python

0 commit comments

Comments
 (0)