博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode - 766. Toeplitz Matrix
阅读量:6503 次
发布时间:2019-06-24

本文共 677 字,大约阅读时间需要 2 分钟。

A matrix is Toeplitz if every diagonal from top-left to bottom-right has the same element.

Now given an M x N matrix, return True if and only if the matrix is Toeplitz.

 

Example 1:

Input:matrix = [  [1,2,3,4],  [5,1,2,3],  [9,5,1,2]]Output: TrueExplanation:In the above grid, the diagonals are:"[9]", "[5, 5]", "[1, 1, 1]", "[2, 2, 2]", "[3, 3]", "[4]".In each diagonal all elements are the same, so the answer is True.

Example 2:

Input:matrix = [  [1,2],  [2,2]]Output: FalseExplanation:The diagonal "[1, 2]" has different elements.
class Solution {    public boolean isToeplitzMatrix(int[][] matrix) {        if (matrix == null)            return false;        for (int i=0; i

 

转载地址:http://xxmyo.baihongyu.com/

你可能感兴趣的文章
java json与map互相转换(一)
查看>>
Unity2018新功能抢鲜 | Package Manager
查看>>
jq ajax post body raw传json
查看>>
C#中string.format用法详解
查看>>
js最新手机号码、电话号码正则表达式
查看>>
手写一个selenium浏览器池
查看>>
【linux】linux重启tomcat + 实时查看tomcat启动日志
查看>>
(原創) 系統分析和系統設計有什麼差別? (OO)
查看>>
关于 typedef void * POINTER_64 PVOID64;问题
查看>>
电子书下载:Silverlight 4: Problem – Design – Solution
查看>>
2^n的第一位数字 soj 3848 mathprac
查看>>
JavaScript经典代码【二】【javascript判断用户点了鼠标左键还是右键】
查看>>
Commons.net FTPClient 上传文件
查看>>
Azure Redis Cache (5) Redis Cache Cluster集群模式
查看>>
SQL Server 2008 部分改变
查看>>
[转]使用WinINet和WinHTTP
查看>>
【原创】简单的局域网内无线文件传输(1)
查看>>
在Hyper-V下Linux不能使用鼠标
查看>>
Android ListView A~Z快速索引(改进版)
查看>>
利用JQuery制作自定义Alert Box
查看>>