Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
r = [20,5,3,1,0,1,1,0,0,0,0];
i_arr_corr = {'Magic potion','Shovel','Bombs'};
r_rem_corr = 70;
[i_arr,r_rem] = rupee_count_items(r);
assert(isequal(r_rem,r_rem_corr));
assert(isequal(i_arr,i_arr_corr));
r =
395
i_arr =
1×1 cell array
{'Magic potion'}
r =
70
|
2 | Fail |
r = [4,0,1,0,0,0,0,0,0,1,5];
i_arr_corr = {'Bow & Arrows','Shield','Magic potion'};
r_rem_corr = 14;
[i_arr,r_rem] = rupee_count_items(r);
assert(isequal(r_rem,r_rem_corr));
assert(isequal(i_arr,i_arr_corr));
r =
1714
i_arr =
1×1 cell array
{'Bow & Arrows'}
r =
14
|
3 | Fail |
r = [194,27,13,5,3,2,1,0,1,0,1];
i_arr_corr = {'Bow & Arrows','Shield'};
r_rem_corr = 9;
[i_arr,r_rem] = rupee_count_items(r);
assert(isequal(r_rem,r_rem_corr));
assert(isequal(i_arr,i_arr_corr));
r =
1509
i_arr =
1×1 cell array
{'Bow & Arrows'}
r =
9
|
4 | Fail |
r = [254,94,23,11,15,4,7,3,2,0,1];
i_arr_corr = {'Hookshot','Bow & Arrows','Magic potion','Shovel','Bombs'};
r_rem_corr = 49;
[i_arr,r_rem] = rupee_count_items(r);
assert(isequal(r_rem,r_rem_corr));
assert(isequal(i_arr,i_arr_corr));
r =
4374
i_arr =
1×1 cell array
{'Hookshot'}
r =
49
|
5 | Fail |
r = [255,94,24,13,15,4,7,3,2,2,1];
i_arr_corr = {'Hookshot','Bow & Arrows','Shield','Magic potion','Shovel','Bombs'};
r_rem_corr = 0;
[i_arr,r_rem] = rupee_count_items(r);
assert(isequal(r_rem,r_rem_corr));
assert(isequal(i_arr,i_arr_corr));
r =
4825
i_arr =
1×1 cell array
{'Hookshot'}
r =
0
|
6 | Fail |
r = [27,2,1,0,0,0,0,0,0,0,0];
i_arr_corr = {'Bombs'};
r_rem_corr = 22;
[i_arr,r_rem] = rupee_count_items(r);
assert(isequal(r_rem,r_rem_corr));
assert(isequal(i_arr,i_arr_corr));
r =
47
i_arr =
1×1 cell array
{'Bombs'}
r =
22
|
7 | Fail |
r_ind = randi(21);
r = [r_ind,2,2,1,1,0,0,0,0,0,0];
i_arr_corr = {'Shovel'};
r_rem_corr = r_ind;
[i_arr,r_rem] = rupee_count_items(r);
assert(isequal(r_rem,r_rem_corr));
assert(isequal(i_arr,i_arr_corr));
r =
119
i_arr =
1×1 cell array
{'Shovel'}
r =
19
|
Remove the small words from a list of words.
672 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
Count consecutive 0's in between values of 1
163 Solvers
Matlab Basics - Absolute Value
360 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!