1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -34,7 +34,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"528\", \"totalSubmission\": \"820\", \"totalAcceptedRaw\": 528, \"totalSubmissionRaw\": 820, \"acRate\": \"64.4%\"}",
"stats": "{\"totalAccepted\": \"538\", \"totalSubmission\": \"834\", \"totalAcceptedRaw\": 538, \"totalSubmissionRaw\": 834, \"acRate\": \"64.5%\"}",
"hints": [
"If a row has k triangles, how many cards does it take to build that row? It takes 3 * k - 1 cards.",
"If you still have i cards left, and on the previous row there were k triangles, what are the possible ways to build the current row? You can start at 1 triangle and continue adding more until you run out of cards or reach k - 1 triangles."