7 kyu
ASCII letters from Number
1,134 of 2,203ShellRox
Description:
You have to create a function that converts integer given as string into ASCII uppercase letters or spaces.
All ASCII characters have their numerical order in table.
For example,
from ASCII table, character of number 65 is "A".
Numbers will be next to each other, So you have to split given number to two digit long integers.
Examples (input -> output)
'658776' -> 'AWL' (because in ASCII table 'A' is 65, 'W' is 87, 'L' is 76)
'73327673756932858080698267658369' ->'I LIKE UPPERCASE'
Good Luck!
Fundamentals
Similar Kata:
Stats:
Created | Feb 11, 2017 |
Published | Feb 11, 2017 |
Warriors Trained | 3036 |
Total Skips | 31 |
Total Code Submissions | 5047 |
Total Times Completed | 2203 |
Python Completions | 1134 |
JavaScript Completions | 924 |
Ruby Completions | 69 |
C Completions | 114 |
COBOL Completions | 3 |
TypeScript Completions | 73 |
Total Stars | 29 |
% of votes with a positive feedback rating | 92% of 512 |
Total "Very Satisfied" Votes | 441 |
Total "Somewhat Satisfied" Votes | 64 |
Total "Not Satisfied" Votes | 7 |
Total Rank Assessments | 32 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |