Problem Description
You are given a string num
consisting of only digits. A string of digits is called balanced if the sum of the digits at even indices is equal to the sum of digits at odd indices. Return true
if num
is balanced, otherwise return false
.
Key Insights
- The problem requires checking the sums of digits based on their indices (even vs. odd).
- The string will always have at least 2 characters, ensuring that we will have both even and odd indices to compare.
- Simple iteration over the string while maintaining two accumulators for the sums is efficient.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the string num
.
Space Complexity: O(1), as we are using a constant amount of space for the sums.
Solution
To solve the problem, we will iterate through the string and maintain two separate sums: one for the digits at even indices and one for the digits at odd indices. We can use a simple loop to check the index of each character in the string and add the numeric value of the character to the appropriate sum. Finally, we will compare the two sums and return the result.