You are viewing a single comment's thread. Return to all comments →
Linear scan
int sum_up(int* arr, int l, int r){ int res = 0; for (int i = l; i<= r; i++){ res += arr[i]; } return res; } char* balancedSums(int arr_count, int* arr){ int total_sum = sum_up(arr, 0, arr_count-1); int left_sum = 0; int right_sum; for (int i=0; i<arr_count; i++){ right_sum = total_sum - left_sum - arr[i]; if (left_sum == right_sum){ return "YES"; } left_sum += arr[i]; } return "NO"; }
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Sherlock and Array
You are viewing a single comment's thread. Return to all comments →
Linear scan