7 kyu
Adding words - Part I
580 of 1,868osofem
Description:
This is the first part of this kata series. Second part is here and third part is here
Add two English words together!
Implement a class Arith
(struct struct Arith{value : &'static str,}
in Rust) such that
//javascript
var k = new Arith("three");
k.add("seven"); //this should return "ten"
Input - Will be between zero and ten and will always be in lower case
Output - Word representation of the result of the addition. Should be in lower case
Mathematics
Fundamentals
Similar Kata:
Stats:
Created | May 31, 2017 |
Published | May 31, 2017 |
Warriors Trained | 4049 |
Total Skips | 213 |
Total Code Submissions | 7464 |
Total Times Completed | 1868 |
JavaScript Completions | 600 |
Ruby Completions | 141 |
Python Completions | 580 |
Rust Completions | 256 |
PHP Completions | 184 |
C++ Completions | 190 |
Total Stars | 49 |
% of votes with a positive feedback rating | 86% of 419 |
Total "Very Satisfied" Votes | 324 |
Total "Somewhat Satisfied" Votes | 73 |
Total "Not Satisfied" Votes | 22 |
Total Rank Assessments | 10 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 7 kyu |