Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
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
t =
4 5 6
i_arr =
1×1 cell array
{'Magic potion'}
i_arr =
1×2 cell array
{'Magic potion'} {'Shovel'}
i_arr =
1×3 cell array
{'Magic potion'} {'Shovel'} {'Bombs'}
r_rem =
70
|
2 | Pass |
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
t =
2 3 4
i_arr =
1×1 cell array
{'Bow & Arrows'}
i_arr =
1×2 cell array
{'Bow & Arrows'} {'Shield'}
i_arr =
1×3 cell array
{'Bow & Arrows'} {'Shield'} {'Magic potion'}
r_rem =
14
|
3 | Pass |
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
t =
2 3
i_arr =
1×1 cell array
{'Bow & Arrows'}
i_arr =
1×2 cell array
{'Bow & Arrows'} {'Shield'}
r_rem =
9
|
4 | Pass |
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
t =
1 2 4 5 6
i_arr =
1×1 cell array
{'Hookshot'}
i_arr =
1×2 cell array
{'Hookshot'} {'Bow & Arrows'}
i_arr =
1×3 cell array
{'Hookshot'} {'Bow & Arrows'} {'Magic potion'}
i_arr =
1×4 cell array
{'Hookshot'} {'Bow & Arrows'} {'Magic potion'} {'Shovel'}
i_arr =
1×5 cell array
{'Hookshot'} {'Bow & Arrows'} {'Magic potion'} {'Shovel'} {'Bombs'}
r_rem =
49
|
5 | Pass |
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
t =
1 2 3 4 5 6
i_arr =
1×1 cell array
{'Hookshot'}
i_arr =
1×2 cell array
{'Hookshot'} {'Bow & Arrows'}
i_arr =
1×3 cell array
{'Hookshot'} {'Bow & Arrows'} {'Shield'}
i_arr =
1×4 cell array
{'Hookshot'} {'Bow & Arrows'} {'Shield'} {'Magic potion'}
i_arr =
1×5 cell array
{'Hookshot'} {'Bow & Arrows'} {'Shield'} {'Magic potion'} {'Shovel'}
i_arr =
1×6 cell array
{'Hookshot'} {'Bow & Arrows'} {'Shield'} {'Magic potion'} {'Shovel'} {'Bombs'}
r_rem =
0
|
6 | Pass |
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
t =
6
i_arr =
1×1 cell array
{'Bombs'}
r_rem =
22
|
7 | Pass |
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 =
104
t =
5
i_arr =
1×1 cell array
{'Shovel'}
r_rem =
4
|
Make one big string out of two smaller strings
1148 Solvers
559 Solvers
379 Solvers
Find out sum and carry of Binary adder
379 Solvers
177 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!