Compare Matrices - греша ли във функцията за освобождаване на памет на тримерен масив?
Write a program that reads two integer matrices (2D arrays) from the console and compares them element by element.
You are not allowed to use STL.
For better code reusability, you could do the comparison in a function, which returns true if they are equal and false if not.
Each matrix definition on the console will contain a line with a positive integer number R – the number of rows in the matrix – followed by R lines containing the numbers in the matrix, separated by spaces (each line will have an equal amount of numbers.
The matrices will have at most 10 rows and at most 10 columns.
Print equal if the matrices match, and not equal if they do not match.
Решавам задачата чрез динамично заделяне на тримерен масив, но явно не освобождавам паметта правилно. Ако не използвам функцията за освобождаване на динамично заделен тримерен масив взимам 100 точки, но ако я използвам ми дава time limit на всички тестове. Кажете ми къде греша във функцията.
https://pastebin.com/2XKT7GAk