Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 538 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 538 Bytes

Given the following function call:

  • character_convert('the cat in the hat');

And the resulting output:

  • "11610410132999711632105110321161041013210497116";

Create a function definition that achieves the output with the given input.

  • hint
  • Optimization: How would you speed up the processing if you already encountered a value?

Solution Set