mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-06 07:51:41 +08:00
update
This commit is contained in:
@@ -185,7 +185,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"63.9K\", \"totalSubmission\": \"108.5K\", \"totalAcceptedRaw\": 63940, \"totalSubmissionRaw\": 108484, \"acRate\": \"58.9%\"}",
|
||||
"stats": "{\"totalAccepted\": \"64K\", \"totalSubmission\": \"108.5K\", \"totalAcceptedRaw\": 63956, \"totalSubmissionRaw\": 108506, \"acRate\": \"58.9%\"}",
|
||||
"hints": [
|
||||
"How can you calculate the number of increasing paths that start from a cell (i, j)? Think about dynamic programming.",
|
||||
"Define f(i, j) as the number of increasing paths starting from cell (i, j). Try to find how f(i, j) is related to each of f(i, j+1), f(i, j-1), f(i+1, j) and f(i-1, j)."
|
||||
|
Reference in New Issue
Block a user