Last updated
Was this helpful?
Last updated
Was this helpful?
Complexity Analysis
Time Complexity: O(_N), where N_ is the total number of elements in the input matrix. We add every element in the matrix to our final answer.
Space Complexity: O_(_N), the information stored in seen
and in ans
.