Lists and Matrices Exercises - Problem 3 Diagonal difference
Здравейте,
Имам проблем със тази задача: Write a program that finds the difference between the sums of the square matrix diagonals (absolute value).
Не мога да направя така че while loop-а да е правилен и да се печата правилния резултат. Ето кода: http://pastebin.com/jENfK7n7
Подозирам, че проблема е тук: rdTotal += arr[left++, right];
input: 3
11 2 4
4 5 6
10 8 -12
desired output: 15
actual output: 6