Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions problems/brace-expansion/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--|This file generated by command(leetcode description); DO NOT EDIT. |-->
<!--+----------------------------------------------------------------------+-->
<!--|@author Openset <openset.wang@gmail.com> |-->
<!--|@link https://github.com/openset |-->
<!--|@home https://github.com/openset/leetcode |-->
<!--+----------------------------------------------------------------------+-->

[< Previous](https://github.com/openset/leetcode/tree/master/problems/high-five "High Five")

[Next >](https://github.com/openset/leetcode/tree/master/problems/confusing-number-ii "Confusing Number II")

## 1087. Brace Expansion (Medium)



### Related Topics
[[Backtracking](https://github.com/openset/leetcode/tree/master/tag/backtracking/README.md)]

### Similar Questions
1. [Decode String](https://github.com/openset/leetcode/tree/master/problems/decode-string) (Medium)
1. [Letter Case Permutation](https://github.com/openset/leetcode/tree/master/problems/letter-case-permutation) (Easy)

### Hints
<details>
<summary>Hint 1</summary>
All generated strings are of the same size. How can we generate all of these strings?
</details>

<details>
<summary>Hint 2</summary>
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}")
</details>