Leetcode 0091. Decode Ways
Posted on Sun 12 January 2025 in Leetcode • Tagged with dp, backtracking
Question Link : https://leetcode.com/problems/decode-ways/
Difficulty: Medium
Premium: False
Question
You have intercepted a secret message encoded as a string of numbers. The message is decoded via the following mapping: "1" -> 'A' "2" -> 'B' ... "25" -> 'Y' "26" -> 'Z' However, while decoding the message, you realize that there are …
Continue reading