This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
m = 20;
v = 25
y_correct = 6250;
assert(isequal(kinetic_energy(m,v),y_correct))
v =
25
ans =
6250
|
2 | Pass |
m = 1;
v = 4;
y_correct = 8;
assert(isequal(kinetic_energy(m,v),y_correct))
ans =
8
|
3 | Pass |
m = 6;
v = 9;
y_correct = 243;
assert(isequal(kinetic_energy(m,v),y_correct))
ans =
243
|
435 Solvers
263 Solvers
193 Solvers
Determine the length of a string of characters
121 Solvers
148 Solvers