HackerRank
HackerRank copied to clipboard
C# solution for 2D Arrays-DS problem
@AgrawalAnkie you've mentioned the time complexity in your thoughts as O(n2). If you are trying to convey quadratic complexity i.e. "n raised to the power 2" because of nested loops in your solution then you should write it as O(n^2).