1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-06 07:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -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)."