0784. Letter Case Permutation
https://leetcode.com/problems/letter-case-permutation
Description
Given a string s
, we can transform every letter individually to be lowercase or uppercase to create another string.
Return a list of all possible strings we could create. You can return the output in any order.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
s
will be a string with length between1
and12
.s
will consist only of letters or digits.
ac
Last updated