Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = [1,1];
[m,n] = best_square_plot(x);
assert(isequal(sort([m,n]),y_correct))
|
2 | Pass |
%%
x = 3;
y_correct = [2,2];
[m,n] = best_square_plot(x);
assert(isequal(sort([m,n]),y_correct))
|
3 | Pass |
%%
x = 4;
y_correct = [2,2];
[m,n] = best_square_plot(x);
assert(isequal(sort([m,n]),y_correct))
|
4 | Pass |
%%
x = 5;
y_correct = [2,3];
[m,n] = best_square_plot(x);
assert(isequal(sort([m,n]),y_correct))
|
5 | Pass |
%%
x = 11;
y_correct = [3,4];
[m,n] = best_square_plot(x);
assert(isequal(sort([m,n]),y_correct))
|
6 | Pass |
%%
x = 26;
y_correct = [5,6];
[m,n] = best_square_plot(x);
assert(isequal(sort([m,n]),y_correct))
|
7 | Pass |
%%
x = 111;
y_correct = [11,11];
[m,n] = best_square_plot(x);
assert(isequal(sort([m,n]),y_correct))
|
8 | Pass |
%%
x = 4531;
y_correct = [67,68];
[m,n] = best_square_plot(x);
assert(isequal(sort([m,n]),y_correct))
|
Renaming a field in a structure array
731 Solvers
Reverse the Words (not letters) of a String
297 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
126 Solvers
123 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!