Leetcode劍指offer——面試題04. 二維數組中的查找

常規題,暴力解就行了。web class Solution { public: bool findNumberIn2DArray(vector<vector<int>>& matrix, int target) { int n=matrix.size(); if(n==0) { return false;
相關文章
相關標籤/搜索