offer通過--3二維陣列中查詢-2

獨鹿發表於2018-05-02

注意問題:要細心檢查程式碼

# -*- coding:utf-8 -*-

class Solution:
    # array 二維列表
    def Find(self, target, array):
        # write code here
        if array is None:
            return False
        r = 0
        c = len(array[0])-1
        while c >=0 and r <len(array):
            if array[r][c]==target:
                return True
            elif array[r][c] > target:
                c -= 1
            else:
                r += 1
        return False

相關文章