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 =
[]
|
2 | Pass |
m = 1;
v = 4;
y_correct = 8;
assert(isequal(kinetic_energy(m,v),y_correct))
ans =
[]
|
3 | Pass |
m = 6;
v = 9;
y_correct = 243;
assert(isequal(kinetic_energy(m,v),y_correct))
ans =
[]
|
Project Euler: Problem 1, Multiples of 3 and 5
1063 Solvers
Determine Whether an array is empty
561 Solvers
Make a run-length companion vector
453 Solvers
811 Solvers
Who is the smartest MATLAB programmer?
469 Solvers