Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 12 4 6 9 4 3 1 19 7];
y_correct = [12 9 19];
assert(isequal(find_peak(x),y_correct))
|
2 | Pass |
x = [ones(1,9) 10 zeros(1,10)];
y_correct = 10;
assert(isequal(find_peak(x),y_correct))
|
3 | Pass |
x = [1:10 100 -4 2 0 0 4 5 6 0];
y_correct = [100 2 6];
assert(isequal(find_peak(x),y_correct))
|
4 | Pass |
x = [1:5 6:-1:1 1:3 4:-1:0];
y_correct = [6 4];
assert(isequal(find_peak(x),y_correct))
|
5 | Pass |
x = zeros(1,10000); x(2:10:9992) = 1;
y_correct = ones(1,1000);
assert(isequal(find_peak(x),y_correct))
|
6 | Pass |
x = [1 2 4 7 10 9 8 9 10 9 7 4 5 3 1 -2 -3 0 1 0];
y_correct = [10 10 5 1];
assert(isequal(find_peak(x),y_correct))
|
7 | Pass |
x = [repmat([1 2 3 2 1],[1,1000])];
y_correct = 3*ones(1,1000);
assert(isequal(find_peak(x),y_correct))
|
Return the largest number that is adjacent to a zero
3749 Solvers
1091 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
Find the maximum number of decimal places in a set of numbers
734 Solvers
519 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!