[CodingBat/java] canBalance
구분 Array - 3 문제 https://codingbat.com/prob/p158767 CodingBat Java Array-3 canBalance Given a non-empty array, return true if there is a place to split the array so that the sum of the numbers on one side is equal to the sum of the numbers on the other side.canBalance([1, 1, 1, 2, 1]) → truecanBalance([2, 1, 1, 2, 1]) → falsecanBalance( codingbat.com 주어진 int배열을 두 부분으로 나누었을 때, 각각 배열의 합이 같아질 수 있으면 ..