Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
sum_up = 5*rand; % sum of array should be this
n = randi(10); %number of elements in array
sum_array = [];
for times = 1:100
for i = 1:n
sum_array(i,1) = fill_array_sum_up_to(sum_up,n,sum_array);
end
checksum(times) = all(diff(sort(sum_array)));
end
assert(all(checksum));
|
894 Solvers
337 Solvers
434 Solvers
171 Solvers
Determine the length of a string of characters
171 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!