最新 最热

LeetCode 0048 - Rotate Image

You are given an n x n 2D matrix representing an image.

2021-08-11
1

LeetCode 0054 - Spiral Matrix

Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.

2021-08-11
1

2021-07-29:最大路径和。给定一个矩阵matrix,先从左上

2021-07-29:最大路径和。给定一个矩阵matrix,先从左上角开始,每一步只能往右或者往下走,走到右下角。然后从右下角出发,每一步只能往上或者往左走,再回到左上角。任何一个位置的数字,只能获得一遍。返回最大路径和。...

2021-07-30
0

Leetcode 1605. Find Valid Matrix Given Row and Column Sums

**解析:**Version 1,贪心算法,由于矩阵中的每一个元素matrix[i][j]一定不大于min(rowSum[i], colSum[j],因此将matrix[i][j]设置为min(rowSum[i], colSum[j]就可以解决一行或一列的数值设置问题,当前行或当前列剩余的元素...

2021-07-14
0

54. 螺旋矩阵

给你一个 m 行 n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。 模拟class Solution { public List<Integer> spir

2021-06-01
0

304. 二维区域和检索 - 矩阵不可变

给定一个二维矩阵,计算其子矩形范围内元素的总和,该子矩阵的左上角为 (row1, col1) ,右下角为 (row2, col2) 。 这个的话考察二维前缀和公式: sum[i]...

2021-06-01
0

48. 旋转图像

给定一个 n × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。 你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 使用另一个矩阵来旋转图像...

2021-06-01
0

​【LeetCode每日一题】1738. 找出第 K 大的异或坐标值

给你一个二维矩阵 matrix 和一个整数 k ,矩阵大小为 m x n 由非负整数组成。

2021-05-31
0

2021-05-25:给定一个矩阵matrix,值有正、负、

2021-05-25:给定一个矩阵matrix,值有正、负、0,蛇可以空降到最左列的任何一个位置,初始增长值是0,蛇每一步可以选择右上、右、右下三个方向的任何一个前进,沿途的数字累加起来,作为增长值;但是蛇一旦增长值为负数,就会死去 。...

2021-05-26
0

动态规划-最大的正方形面积

Given a 2D binary matrix filled with 0’s and 1’s, find the largest square containing only 1’s and return its area.

2021-05-21
1