You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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}")
0 commit comments