题解 | #二维数组中的查找#

二维数组中的查找

https://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e

很标准的暴力解法,我再去看看别人咋解的,哈哈哈~

class Solution {
public:
    bool Find(int target, vector<vector<int> > array) {
        for(auto irow = begin(array); irow != end(array); irow++ ){
            for(auto icol = begin(*irow); icol != end(*irow); icol++){
                if(*icol == target){
                    return true;
                }
            }
        }
        return false;
    }
};

全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务