This solution is outdated. To rescore this solution, sign in.
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))
x =
1 2 3 4 5 6 7 8 9 10 100 -4 2 0 0 4 5 6 0
|
Renaming a field in a structure array
731 Solvers
2240 Solvers
Unique values without using UNIQUE function
171 Solvers
Who has power to do everything in this world?
318 Solvers
Number of digits in an integer
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!