diff --git a/大厂刷题班/class18/Code03_CherryPickup.java b/大厂刷题班/class18/Code03_CherryPickup.java index 7aec45d..f59d26c 100644 --- a/大厂刷题班/class18/Code03_CherryPickup.java +++ b/大厂刷题班/class18/Code03_CherryPickup.java @@ -35,6 +35,8 @@ public class Code03_CherryPickup { } } + // 如下方法,在leetcode上提交也能通过 + // 测试链接 : https://leetcode.cn/problems/cherry-pickup/ public static int cherryPickup(int[][] grid) { int N = grid.length; int M = grid[0].length;