Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit72f19dc

Browse files
refactor 931
1 parentd3c9fba commit72f19dc

File tree

1 file changed

+0
-21
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-21
lines changed

‎src/main/java/com/fishercoder/solutions/_931.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,5 @@
11
packagecom.fishercoder.solutions;
22

3-
/**
4-
* 931. Minimum Falling Path Sum
5-
*
6-
* Given a square array of integers A, we want the minimum sum of a falling path through A.
7-
* A falling path starts at any element in the first row, and chooses one element from each row.
8-
* The next row's choice must be in a column that is different from the previous row's column by at most one.
9-
*
10-
* Example 1:
11-
* Input: [[1,2,3],[4,5,6],[7,8,9]]
12-
* Output: 12
13-
* Explanation:
14-
* The possible falling paths are:
15-
* [1,4,7], [1,4,8], [1,5,7], [1,5,8], [1,5,9]
16-
* [2,4,7], [2,4,8], [2,5,7], [2,5,8], [2,5,9], [2,6,8], [2,6,9]
17-
* [3,5,7], [3,5,8], [3,5,9], [3,6,8], [3,6,9]
18-
* The falling path with the smallest sum is [1,4,7], so the answer is 12.
19-
*
20-
* Note:
21-
* 1 <= A.length == A[0].length <= 100
22-
* -100 <= A[i][j] <= 100
23-
* */
243
publicclass_931 {
254
publicstaticclassSolution1 {
265
publicintminFallingPathSum(int[][]A) {

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp