22. Row with minimum number of 1's
The problem can be found at the following link: Question Link
My Approach
To find the row with the minimum number of 1's, I traverse through each row, calculating the sum of each row. If the sum of the current row is less than the sum of the previous minimum row, update the minimum row index.
Time and Auxiliary Space Complexity
Time Complexity : O(n * m)
Auxiliary Space Complexity : O(1)
Code (C++)
Contribution and Support
For discussions, questions, or doubts related to this solution, please visit our discussion section. We welcome your input and aim to foster a collaborative learning environment.
If you find this solution helpful, consider supporting us by giving a ⭐ star
to the getlost01/gfg-potd repository.
Last updated