Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
n = 35007;
word = 'LOOSE';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'35007'
|
2 | Fail |
n = 77345;
word = 'ShELL';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'77345'
|
3 | Fail |
n = 36138;
word = 'BEIgE';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'36138'
|
4 | Fail |
n = 378806;
word = 'gOBBLE';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'378806'
|
5 | Fail |
n = 376006;
word = 'gOOgLE';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'376006'
|
6 | Fail |
n = 57738461375;
word = 'SLEIghBELLS';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'57738461375'
|
7 | Fail |
n = 0.7734;
word = 'hELLO';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'0.7734'
|
8 | Fail |
n = 53045;
word = 'ShOES';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'53045'
|
9 | Fail |
n = 771;
word = 'ILL';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'771'
|
10 | Fail |
n = 345;
word = 'ShE';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'345'
|
11 | Fail |
n = 7735;
word = 'SELL';
assert(isequal(calc_spell_num(word),n))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'7735'
|
12 | Fail |
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))
s =
'OIZEhSgLB'
e =
'012345678'
word =
'7714'
|
Find state names that end with the letter A
708 Solvers
2538 Solvers
Convert a Cell Array into an Array
430 Solvers
Find the maximum two numbers of every column of a matrix
137 Solvers
Find out sum of all elements of given Matrix
349 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!