Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 35007;
txt = 'LOOSE';
assert(isequal(calc_spell_word(n),txt))
n =
'35007'
word =
'LOOSE'
|
2 | Pass |
n = 77345;
txt = 'ShELL';
assert(isequal(calc_spell_word(n),txt))
n =
'77345'
word =
'ShELL'
|
3 | Pass |
n = 36138;
txt = 'BEIgE';
assert(isequal(calc_spell_word(n),txt))
n =
'36138'
word =
'BEIgE'
|
4 | Pass |
n = 378806;
txt = 'gOBBLE';
assert(isequal(calc_spell_word(n),txt))
n =
'378806'
word =
'gOBBLE'
|
5 | Pass |
n = 376006;
txt = 'gOOgLE';
assert(isequal(calc_spell_word(n),txt))
n =
'376006'
word =
'gOOgLE'
|
6 | Pass |
n = 57738461375;
txt = 'SLEIghBELLS';
assert(isequal(calc_spell_word(n),txt))
n =
'57738461375'
word =
'SLEIghBELLS'
|
7 | Pass |
n = 0.7734;
txt = 'hELLO';
assert(isequal(calc_spell_word(n),txt))
n =
'0.7734'
word =
'hELLO'
|
8 | Pass |
n = 53045;
txt = 'ShOES';
assert(isequal(calc_spell_word(n),txt))
n =
'53045'
word =
'ShOES'
|
9 | Pass |
n = 771;
txt = 'ILL';
assert(isequal(calc_spell_word(n),txt))
n =
'771'
word =
'ILL'
|
10 | Pass |
n = 345;
txt = 'ShE';
assert(isequal(calc_spell_word(n),txt))
n =
'345'
word =
'ShE'
|
11 | Pass |
n = 7735;
txt = 'SELL';
assert(isequal(calc_spell_word(n),txt))
n =
'7735'
word =
'SELL'
|
12 | Pass |
ind = randi(4);
n_arr = [36138 707 7714 57738];
n = n_arr(ind);
txt_arr = {'BEIgE','LOL','hILL','BELLS'};
txt = txt_arr{ind};
assert(isequal(calc_spell_word(n),txt))
n =
'7714'
word =
'hILL'
|
Return elements unique to either input
550 Solvers
130 Solvers
Matrix with different incremental runs
249 Solvers
Set the array elements whose value is 13 to 0
939 Solvers
128 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!