Skip to content

Commit 6902982

Browse files
author
openset
committed
Add: Brace Expansion
1 parent 3ae2e64 commit 6902982

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

Diff for: problems/brace-expansion/README.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!--|This file generated by command(leetcode description); DO NOT EDIT. |-->
2+
<!--+----------------------------------------------------------------------+-->
3+
<!--|@author Openset <[email protected]> |-->
4+
<!--|@link https://github.com/openset |-->
5+
<!--|@home https://github.com/openset/leetcode |-->
6+
<!--+----------------------------------------------------------------------+-->
7+
8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/high-five "High Five")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/confusing-number-ii "Confusing Number II")
11+
12+
## 1087. Brace Expansion (Medium)
13+
14+
15+
16+
### Related Topics
17+
[[Backtracking](https://github.com/openset/leetcode/tree/master/tag/backtracking/README.md)]
18+
19+
### Similar Questions
20+
1. [Decode String](https://github.com/openset/leetcode/tree/master/problems/decode-string) (Medium)
21+
1. [Letter Case Permutation](https://github.com/openset/leetcode/tree/master/problems/letter-case-permutation) (Easy)
22+
23+
### Hints
24+
<details>
25+
<summary>Hint 1</summary>
26+
All generated strings are of the same size. How can we generate all of these strings?
27+
</details>
28+
29+
<details>
30+
<summary>Hint 2</summary>
31+
Do a backtracking on which each level of it has to choose one single (e.g. 'a') character or any character of the given parenthesized group (e.g. "{a,b,c}")
32+
</details>

0 commit comments

Comments
 (0)