문제 https://leetcode.com/problems/search-a-2d-matrix/submissions/ Search a 2D Matrix - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 내 풀이 class Solution { public boolean searchMatrix(int[][] matrix, int target) { int row = matrix.length-1; for(int i=0; i