题目766题目信息运行结果本题排行讨论区
回文数
时间限制:1000 ms | 内存限制:65535 KB
难度:0
描述 请寻找并输出1至1000000之间的数m,它满足m、m^2和m^3均为回文数。回文数大家都知道吧,就是各位数字左右对称的整数,例如121、676、123321等。满足上述条件的数如m=11,m^2=121,m^3=1331皆为回文数。
原创
2022-08-08 18:31:23
65阅读
AC代码: 题目来源: http://acm.nyist.net/JudgeOnline/problem.php?pid=766
原创
2021-07-27 13:29:44
68阅读
描述 判断给出的年份 n 是否为闰年. 如果 n 为闰年则返回 true 闰年是包含额外一天的日历年. 如果年份可以被 4 整除且不能被 100 整除 或者 可以被 400 整除, 那么这一年为闰年. --wikipedia 样例 样例 1: 输入 : n = 2008 输出 : true 样例 2
转载
2021-04-08 20:48:00
152阅读
2评论
本题经过一下午的思考,终于解出来了。使用的是层次遍历的思想。
class Solution {
public:
bool isToeplitzMatrix(vector<vector<int>>& matrix) {
int RowLen = matrix.size() - 1;
int ColLen = matrix[0]
转载
2018-09-28 17:34:00
24阅读
A matrix is Toeplitz if every diagonal from top-left to bottom-right has the sam
原创
2022-08-03 21:38:06
48阅读
Given an m x n matrix, return true if the matrix is Toeplitz. Otherwise, return false.A matrix is Toeplitz if every diagonal from top-left to bottom-right has the same elements. Example 1:Input: matri
转载
2021-03-13 20:33:01
70阅读
2评论
766. Toeplitz Matrix*https://leetcode.com/problems/toeplitz-matrix/题目描述A matrix is Toeplitz if every diagonal from top-left to bottom-right has t
原创
2022-05-30 10:49:52
4756阅读
题目A matrix is Toeplitz if every diagonal from top-left to bottom-right ha
原创
2023-03-07 15:18:47
37阅读
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 m
转载
2018-10-17 15:50:00
41阅读
2评论
原题链接在这里:https://leetcode.com/problems/toeplitz-matrix/ 题目: A matrix is Toeplitz if every diagonal from top-left to bottom-right has the same element.
转载
2019-12-16 10:08:00
94阅读
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:
原创
2023-05-30 17:32:24
68阅读
A matrix is Toe
Now given an M x N matrix, return True if and only if the matrix is Toeplitz.
Example 1:
Input:
matrix ...
原创
2022-08-10 15:50:05
37阅读
全部学习汇总: GitHub - GreyZhang/hack_autosar: learning autosar documents, aha, very hard! 继续学习AUTOSAR的文档,开始看一个新的文件《AUTOSAR_RS_ECUResourceTemplate》
原创
2021-09-10 15:50:34
77阅读
题目链接:http://codeforces.com/contest/766/p
原创
2022-11-23 10:15:26
45阅读
输入一个字符串,字符串中可能包含多个连续的空格,请将多余的空格去掉,只留下一个空格。输出去掉多余空格后的字符串,占一行。保证输入字符串的开头和结尾没有空格。输入字符串的长度不超过 200。共一行,包含一个字符串。
原创
2022-10-15 06:29:14
94阅读
time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output Mahmoud has n line segments, the i-t...
转载
2017-10-04 18:45:00
113阅读
2评论
点击打开链接B. Mahmoud and a Triangletime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputMahmoud has
原创
2022-09-07 16:40:19
54阅读
LWC 68: 766. Toeplitz Matrix传送门:766. Toeplitzlement. Now given an M x N matrix, return T
原创
2023-07-10 17:15:40
107阅读