Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 5 2 2 7 8 3 3 1 3 8 8 8];
y_correct = [2 3];
assert(isequal(threeTimes(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
[> In threeTimes at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
2 | Pass |
%%
x = [1 1 1];
y_correct = [1];
assert(isequal(threeTimes(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
[> In threeTimes at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
3 | Pass |
%%
x = [5 10 -3 10 -3 11 -3 5 5 7];
y_correct = [-3 5];
assert(isequal(threeTimes(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
[> In threeTimes at 2
In verifyCode>evaluateCode at 238
In verifyCode at 43
In fevalJSON at 14]
ans =
1
|
Calculate the Levenshtein distance between two strings
456 Solvers
228 Solvers
251 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
Cell Counting: How Many Draws?
581 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!