Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('num2words.m');
assert(isempty(strfind(filetext, 'six hundred and seventy-nine')))
assert(isempty(strfind(filetext, 'one thousand, five hundred and twenty')))
|
2 | Pass |
x = 0;
y_correct = 'zero';
assert(isequal(num2words(x),y_correct))
in_words =
'zero'
|
3 | Pass |
x = 1;
y_correct = 'one';
assert(isequal(num2words(x),y_correct))
in_words =
'one'
|
4 | Pass |
x = 56;
y_correct = 'fifty-six'
assert(isequal(num2words(x),y_correct))
y_correct =
'fifty-six'
in_words =
'fifty-six'
|
5 | Pass |
x = 100;
y_correct = 'one hundred';
assert(isequal(num2words(x),y_correct))
in_words =
'one hundred'
|
6 | Pass |
x = 105;
y_correct = 'one hundred and five';
assert(isequal(num2words(x),y_correct))
in_words =
'one hundred and five'
|
7 | Pass |
x = 245;
y_correct = 'two hundred and forty-five';
assert(isequal(num2words(x),y_correct))
in_words =
'two hundred and forty-five'
|
8 | Pass |
x = 679;
y_correct = 'six hundred and seventy-nine';
assert(isequal(num2words(x),y_correct))
in_words =
'six hundred and seventy-nine'
|
9 | Pass |
x = 1520;
y_correct = 'one thousand, five hundred and twenty';
assert(isequal(num2words(x),y_correct))
in_words =
'one thousand, five hundred and twenty'
|
10 | Pass |
x = 9999;
y_correct = 'nine thousand, nine hundred and ninety-nine';
assert(isequal(num2words(x),y_correct))
in_words =
'nine thousand, nine hundred and ninety-nine'
|
7266 Solvers
Remove all the words that end with "ain"
1027 Solvers
159 Solvers
Create One Large Eye of size N x N Quickly?
70 Solvers
121 Solvers