Search posts, tags, users, and pages
Amit singh
class Solution { public void zero(int[][] arr) { int m = arr.length; int n = arr[0].length; boolean fz = false; boolean cz = false; // Step 1: Check if first row has zero for (int j = 0; j < n; j+...
No responses yet.