Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3 0 4
3 2 5 -1 0
0 0 2 3 4
3 2 5 4 0
-9 0 0 -2 -3];
k = eig(x);
y_correct = k(end);
assert(isequal(last_eig(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 last_eig (line 2)
In evaluateCode', '/users/mss.system.3kfSVi/+cody/verifyCode.m', 238)" style="font-weight:bold">cody.verifyCode>evaluateCode (line 238)
In cody.verifyCode (line 43)
In mls.internal.fevalJSON (line 14)]
|
2 | Pass |
%%
x = [1 2 3
6 4 -1
-9 1 3];
k = eig(x);
y_correct = k(end);
assert(isequal(last_eig(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 last_eig (line 2)
In evaluateCode', '/users/mss.system.3kfSVi/+cody/verifyCode.m', 238)" style="font-weight:bold">cody.verifyCode>evaluateCode (line 238)
In cody.verifyCode (line 43)
In mls.internal.fevalJSON (line 14)]
|
3 | Pass |
%%
x = magic(6);
k = eig(x);
y_correct = k(end);
assert(isequal(last_eig(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 last_eig (line 2)
In evaluateCode', '/users/mss.system.3kfSVi/+cody/verifyCode.m', 238)" style="font-weight:bold">cody.verifyCode>evaluateCode (line 238)
In cody.verifyCode (line 43)
In mls.internal.fevalJSON (line 14)]
|
Increment a number, given its digits
505 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
782 Solvers
Create a square matrix of multiples
330 Solvers
577 Solvers
412 Solvers