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-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -11,8 +11,8 @@
"translatedContent": null,
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 811,
"dislikes": 210,
"likes": 850,
"dislikes": 225,
"isLiked": null,
"similarQuestions": "[]",
"exampleTestcases": "[[0,0],[2,0],[1,1],[2,1],[2,2]]\n[[0,0],[1,1],[0,1],[0,2],[1,0],[2,0]]\n[[0,0],[1,1],[2,0],[1,0],[1,2],[2,1],[0,1],[0,2],[2,2]]",
@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"70.1K\", \"totalSubmission\": \"127.7K\", \"totalAcceptedRaw\": 70134, \"totalSubmissionRaw\": 127666, \"acRate\": \"54.9%\"}",
"stats": "{\"totalAccepted\": \"74K\", \"totalSubmission\": \"135K\", \"totalAcceptedRaw\": 74008, \"totalSubmissionRaw\": 135003, \"acRate\": \"54.8%\"}",
"hints": [
"It's straightforward to check if A or B won or not, check for each row/column/diag if all the three are the same.",
"Then if no one wins, the game is a draw iff the board is full, i.e. moves.length = 9 otherwise is pending."