The crypto system in question is based on phone keyboard. We need two numbers in order to decrypt a word. First number represents relevant letters on a phone keyboard. We must sort all possible (meaningful or meaningless) string permutations. then select next number(th) word from this permutation list.
For example if input is [2 1];
there are three letters on phone keyboard '2' which is 'abc'. We sort this letters as {'a';'b';'c'} then select first one. Output is 'a'.
Another example if input is [2639 99]
output must be 'cody', since from all sorted possible string permutations with {'abc','mno','def','wxyz'} the 99th is 'cody'.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers21
Suggested Problems
-
Pythagorean perfect squares: find the square of the hypotenuse and the length of the other side
59 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
884 Solvers
-
Multiples of a Number in a Given Range
939 Solvers
-
Lychrel Number Test (Inspired by Project Euler Problem 55)
111 Solvers
-
Volume difference between Ellipsoid and Sphere
135 Solvers
More from this Author92
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Test cases added.