[Programming Fundamentals] Homework from "Arrays - Exercises" Problem 11. Equal Sums 90/100% in judge
Написах задачата два пъти по два различни начина https://pastebin.com/SL2msjaa и https://pastebin.com/BjKM3Rzs ако някои се сеща какво пропускам ще съм му много благодарен.
Условието на задачата:
Write a program that determines if there exists an element in the array such that the sum of the elements on its left is equal to the sum of the elements on its right. If there are no elements to the left / right, their sum is considered to be 0. Print the index that satisfies the required condition or “no” if there is no such index.
Линк към judge:
https://judge.softuni.bg/Contests/Compete/Index/207#10
Намерих решение:
Не работи правилно ако му подадеш например: 1 2 -2 би трябвало да върне 0 при мене връща no. Ето оправения код: https://pastebin.com/acGSBy2c
Благодаря, вече го оправих по малко друг начин просто не се бях сетил, че може да ми подадат нешто подобно на 1 2 -2