Retired
Integer to Text (retired)
Description:
Your mission is to build a function integer_to_text that converts integer numbers to english from 0
up to 999999
.
If the input is not between 0
and 999999
return "Error".
Make sure you capitalize the fist letter of the text string.
Examples:
integer_to_text(47) # returns "Forty seven"
integer_to_text(470) # returns "Four hundred seventy"
integer_to_text(15072) # returns "Fifteen thousand seventy two"
Fundamentals
Numbers
Data Types
Integers
Strings
Algorithms
Logic
Similar Kata:
Stats:
Created | Feb 7, 2019 |
Warriors Trained | 14 |
Total Skips | 0 |
Total Code Submissions | 49 |
Total Times Completed | 6 |
Python Completions | 6 |
Total Stars | 1 |
% of votes with a positive feedback rating | 0% of 4 |
Total "Very Satisfied" Votes | 0 |
Total "Somewhat Satisfied" Votes | 0 |
Total "Not Satisfied" Votes | 4 |
Total Rank Assessments | 4 |
Average Assessed Rank | 7 kyu |
Highest Assessed Rank | 5 kyu |
Lowest Assessed Rank | 8 kyu |