Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 35007;
word = 'LOOSE';
assert(isequal(calc_spell_num(word),n))
f =
35007
|
2 | Pass |
n = 77345;
word = 'ShELL';
assert(isequal(calc_spell_num(word),n))
f =
77345
|
3 | Pass |
n = 36138;
word = 'BEIgE';
assert(isequal(calc_spell_num(word),n))
f =
36138
|
4 | Pass |
n = 378806;
word = 'gOBBLE';
assert(isequal(calc_spell_num(word),n))
f =
378806
|
5 | Pass |
n = 376006;
word = 'gOOgLE';
assert(isequal(calc_spell_num(word),n))
f =
376006
|
6 | Pass |
n = 57738461375;
word = 'SLEIghBELLS';
assert(isequal(calc_spell_num(word),n))
f =
5.7738e+10
|
7 | Fail |
n = 0.7734;
word = 'hELLO';
assert(isequal(calc_spell_num(word),n))
f =
0.7734
|
8 | Pass |
n = 53045;
word = 'ShOES';
assert(isequal(calc_spell_num(word),n))
f =
53045
|
9 | Pass |
n = 771;
word = 'ILL';
assert(isequal(calc_spell_num(word),n))
f =
771
|
10 | Pass |
n = 345;
word = 'ShE';
assert(isequal(calc_spell_num(word),n))
f =
345
|
11 | Pass |
n = 7735;
word = 'SELL';
assert(isequal(calc_spell_num(word),n))
f =
7735
|
12 | Pass |
ind = randi(4);
n_arr = [36138 707 7714 57738];
n = n_arr(ind);
word_arr = {'BEIgE','LOL','hILL','BELLS'};
word = word_arr{ind};
assert(isequal(calc_spell_num(word),n))
f =
57738
|
1836 Solvers
401 Solvers
Flag largest magnitude swings as they occur
582 Solvers
436 Solvers
420 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!