Problem 74. Balanced number
Solution Stats
Problem Comments
-
1 Comment
GEORGIOS BEKAS
on 25 Jan 2018
there is a problem with the test.
it does not accept the following code:
s1=[]
s2=[]
l=length(s)
if mod(l,2)~= 0
for i = 1:ceil(length(s)/2)-1
s1 = [s1,str2double(s(i))]
end
for i = ceil(length(s)/2)+1:l
s2=[s2,str2double(s(i))]
end
else
for i = 1:ceil(length(s)/2)
s1 = [s1,str2double(s(i))]
end
for i = ceil(length(s)/2)+1:l
s2=[s2,str2double(s(i))]
end
end
if sum(s1)==sum(s2)
tf = 1
else
tf = 0
end
Solution Comments
Show commentsProblem Recent Solvers2675
Suggested Problems
-
Back to basics 22 - Rotate a matrix
869 Solvers
-
472 Solvers
-
"Low : High - Low : High - Turn around " -- Create a subindices vector
507 Solvers
-
564 Solvers
-
421 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!