2022-06-11
Description
'A' -> "1"
'B' -> "2"
...
'Z' -> "26"Input: s = "12"
Output: 2
Explanation: "12" could be decoded as "AB" (1 2) or "L" (12).Solution
Approach #0
Description
Solution
Approach #0
Last updated