Open
Conversation
skypenguins
reviewed
Aug 1, 2025
|
|
||
| class Solution3: | ||
| def isSubsequence(self, s: str, t: str) -> bool: | ||
| chat_to_indices = defaultdict(list) |
hroc135
reviewed
Aug 3, 2025
| * t の char を consume していって、s の最後まで到達できれば ok というのはすぐに考えた | ||
| * Counter みたいな解法 (anagram 的な) も一瞬考えてみたけど subsequence で、出現回数だけでなく順番も大事だから解けないと思った。 | ||
| * 4:00 くらいで `SolutionWA` 書いた。 | ||
| * 脳内で走らせてみて動くと思ったので submit したが WA。s が空文字列のときを考えていなかった。 |
There was a problem hiding this comment.
事前に自分でテストケースを挙げて最後に脳内シミュレーションをするのもいい練習になると思います。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
392. Is Subsequence
https://leetcode.com/problems/is-subsequence/