题解 | #矩阵元素查找#

矩阵元素查找

http://www.nowcoder.com/practice/3afe6fabdb2c46ed98f06cfd9a20f2ce

查找矩阵的元素,返回的是元素的下标,【1,2】下标的是6,从0开始算的下标。

class Solution:
    def findElement(self, mat, n, m, x):
        # write code here

        for i in range(n):
            for j in range(m):
#                 print(mat[i][j])//
                if mat[i][j] == x:

                    return [i,j]//不能新建ans=[],不能返回ans.append,原因还在找
        return None
全部评论

相关推荐

10-15 09:13
已编辑
天津大学 soc前端设计
点赞 评论 收藏
分享
牛客737698141号:他们可以看到在线简历的。。。估计不合适直接就拒了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务