0784. Letter Case Permutation
Description
**Input:** s = "a1b2"
**Output:** ["a1b2","a1B2","A1b2","A1B2"]**Input:** s = "3z4"
**Output:** ["3z4","3Z4"]**Input:** s = "12345"
**Output:** ["12345"]**Input:** s = "0"
**Output:** ["0"]ac
Last updated