1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 23:41: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

@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"13.9K\", \"totalSubmission\": \"46.9K\", \"totalAcceptedRaw\": 13919, \"totalSubmissionRaw\": 46870, \"acRate\": \"29.7%\"}",
"stats": "{\"totalAccepted\": \"13.9K\", \"totalSubmission\": \"46.9K\", \"totalAcceptedRaw\": 13923, \"totalSubmissionRaw\": 46880, \"acRate\": \"29.7%\"}",
"hints": [
"Think about how you can generate all possible strings that contain all three input strings as substrings. Can you come up with an efficient algorithm to do this?",
"Check all permutations of the words a, b, and c. For each permutation, begin by appending some letters to the end of the first word to form the second word. Then, proceed to add more letters to generate the third word."