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": true,
"difficulty": "Easy",
"likes": 256,
"dislikes": 102,
"likes": 258,
"dislikes": 101,
"isLiked": null,
"similarQuestions": "[{\"title\": \"Reverse Vowels of a String\", \"titleSlug\": \"reverse-vowels-of-a-string\", \"difficulty\": \"Easy\", \"translatedTitle\": null}]",
"exampleTestcases": "\"leetcodeisacommunityforcoders\"\n\"aeiou\"",
@@ -28,7 +28,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"81K\", \"totalSubmission\": \"89.3K\", \"totalAcceptedRaw\": 81050, \"totalSubmissionRaw\": 89346, \"acRate\": \"90.7%\"}",
"stats": "{\"totalAccepted\": \"82K\", \"totalSubmission\": \"90.4K\", \"totalAcceptedRaw\": 82048, \"totalSubmissionRaw\": 90400, \"acRate\": \"90.8%\"}",
"hints": [
"How to erase vowels in a string?",
"Loop over the string and check every character, if it is a vowel ignore it otherwise add it to the answer."