Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 35007;
txt = 'LOOSE';
assert(isequal(calc_spell_word(n),txt))
|
2 | Pass |
n = 77345;
txt = 'ShELL';
assert(isequal(calc_spell_word(n),txt))
|
3 | Pass |
n = 36138;
txt = 'BEIgE';
assert(isequal(calc_spell_word(n),txt))
|
4 | Pass |
n = 378806;
txt = 'gOBBLE';
assert(isequal(calc_spell_word(n),txt))
|
5 | Pass |
n = 376006;
txt = 'gOOgLE';
assert(isequal(calc_spell_word(n),txt))
|
6 | Pass |
n = 57738461375;
txt = 'SLEIghBELLS';
assert(isequal(calc_spell_word(n),txt))
|
7 | Pass |
n = 0.7734;
txt = 'hELLO';
assert(isequal(calc_spell_word(n),txt))
|
8 | Pass |
n = 53045;
txt = 'ShOES';
assert(isequal(calc_spell_word(n),txt))
|
9 | Pass |
n = 771;
txt = 'ILL';
assert(isequal(calc_spell_word(n),txt))
|
10 | Pass |
n = 345;
txt = 'ShE';
assert(isequal(calc_spell_word(n),txt))
|
11 | Pass |
n = 7735;
txt = 'SELL';
assert(isequal(calc_spell_word(n),txt))
|
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))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
724 Solvers
Relative ratio of "1" in binary number
392 Solvers
123 Solvers
274 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!