Total Ways To Decode A String - Recursive Dynamic Programming Approach ("Decode Ways" on LeetCode)

Опубликовано: 12 Январь 2019
на канале: Back To Back SWE
78,651
2.1k

Free 5-Day Mini-Course: https://backtobackswe.com
Try Our Full Platform: https://backtobackswe.com/pricing
📹 Intuitive Video Explanations
🏃 Run Code As You Learn
💾 Save Progress
❓New Unseen Questions
🔎 Get All Solutions

Question: A message containing letters from A-Z is being encoded to numbers using the following mapping: 'A' - 1 'B' - 2 ... 'Z' - 26. Given a non-empty string containing only digits, determine the total number of ways to decode it.

Examples:

1
Input: "12"
Output: 2
Explanation: It could be decoded as "AB" (1 2) or "L" (12).

2
Input: "226"
Output: 3
Explanation: It could be decoded as "BZ" (2 26), "VF" (22 6), or "BBF" (2 2 6).


Complexities:

n is the total digits in the input string

Time: O( n )
Memoization prunes our recursion tree and we will do a linear amount of work to solve the problem.

Space: O( n )
We will need to store the answer to up to n subproblems that we will need to calculate


++++++++++++++++++++++++++++++++++++++++++++++++++

HackerRank:    / @hackerrankofficial  

Tuschar Roy:    / tusharroy2525  

GeeksForGeeks:    / @geeksforgeeksvideos  

Jarvis Johnson:    / vsympathyv  

Success In Tech:    / @successintech  


Смотрите видео Total Ways To Decode A String - Recursive Dynamic Programming Approach ("Decode Ways" on LeetCode) онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Back To Back SWE 12 Январь 2019, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 78,651 раз и оно понравилось 2.1 тысяч людям.