Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 13722;
assert(isequal(isBalanced(n),true))
S =
1 3 7 2 2
t =
5
[Warning: Integer operands are required for colon operator when used as index]
[Warning: Integer operands are required for colon operator when used as index]
y =
1
|
2 | Pass |
%%
n = 23567414;
assert(isequal(isBalanced(n),true))
S =
2 3 5 6 7 4 1 4
t =
8
y =
1
|
3 | Pass |
%%
n = 20567410;
assert(isequal(isBalanced(n),false))
S =
2 0 5 6 7 4 1 0
t =
8
y =
0
|
4 | Pass |
%%
n = 1;
assert(isequal(isBalanced(n),true))
S =
1
t =
1
[Warning: Integer operands are required for colon operator when used as index]
[Warning: Integer operands are required for colon operator when used as index]
y =
1
|
5 | Pass |
%%
n = 11111111;
assert(isequal(isBalanced(n),true))
S =
1 1 1 1 1 1 1 1
t =
8
y =
1
|
6 | Pass |
%%
n = 12345678;
assert(isequal(isBalanced(n),false))
S =
1 2 3 4 5 6 7 8
t =
8
y =
0
|
7 | Pass |
%%
n = 12333;
assert(isequal(isBalanced(n),false))
S =
1 2 3 3 3
t =
5
[Warning: Integer operands are required for colon operator when used as index]
[Warning: Integer operands are required for colon operator when used as index]
y =
0
|
8 | Pass |
%%
n = 9898;
assert(isequal(isBalanced(n),true))
S =
9 8 9 8
t =
4
y =
1
|
9 | Pass |
%%
n = 469200;
assert(isequal(isBalanced(n),false))
S =
4 6 9 2 0 0
t =
6
y =
0
|
10 | Pass |
%%
n = 57666;
assert(isequal(isBalanced(n),true))
S =
5 7 6 6 6
t =
5
[Warning: Integer operands are required for colon operator when used as index]
[Warning: Integer operands are required for colon operator when used as index]
y =
1
|
219 Solvers
260 Solvers
338 Solvers
480 Solvers
Solve a System of Linear Equations
3443 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!