1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 15:31:43 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -11,7 +11,7 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Hard",
"likes": 162,
"likes": 173,
"dislikes": 7,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Count Square Submatrices with All Ones\", \"titleSlug\": \"count-square-submatrices-with-all-ones\", \"difficulty\": \"Medium\", \"translatedTitle\": null}, {\"title\": \"Get Biggest Three Rhombus Sums in a Grid\", \"titleSlug\": \"get-biggest-three-rhombus-sums-in-a-grid\", \"difficulty\": \"Medium\", \"translatedTitle\": null}]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"3.6K\", \"totalSubmission\": \"5.8K\", \"totalAcceptedRaw\": 3638, \"totalSubmissionRaw\": 5829, \"acRate\": \"62.4%\"}",
"stats": "{\"totalAccepted\": \"3.8K\", \"totalSubmission\": \"6K\", \"totalAcceptedRaw\": 3773, \"totalSubmissionRaw\": 6016, \"acRate\": \"62.7%\"}",
"hints": [
"Think about how dynamic programming can help solve the problem.",
"For any fixed cell (r, c), can you calculate the maximum height of the pyramid for which it is the apex? Let us denote this value as dp[r][c].",