-
Notifications
You must be signed in to change notification settings - Fork 0
83. Remove Duplicates From Sorted List #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Yuto729
wants to merge
1
commit into
main
Choose a base branch
from
remove-duplicates-from-sorted-list
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,115 @@ | ||
| ## Step1 | ||
| 1. | ||
| 重複をsetを用いて判定する. | ||
| 重複がある場合, previousとcurrentのポインタをずらす. | ||
|
|
||
| ```py | ||
| class Solution: | ||
| def deleteDuplicates(self, head: Optional[ListNode]) -> Optional[ListNode]: | ||
| seen = set() | ||
| previous = None | ||
| current = head | ||
| while current is not None: | ||
| if current.val in seen: | ||
| previous.next = current.next | ||
| current = current.next | ||
| continue | ||
|
|
||
| seen.add(current.val) | ||
| previous = current | ||
| current = current.next | ||
|
|
||
| return head | ||
| ``` | ||
| 2. | ||
| 空間計算量がO(1)の解法. | ||
| 昇順に並んでいるので, 1つ後ろのノードとのみ比較すればいい. | ||
|
|
||
| ```py | ||
| class Solution: | ||
| def deleteDuplicates(self, head: Optional[ListNode]) -> Optional[ListNode]: | ||
| if head is None: | ||
| return None | ||
|
|
||
| node = head | ||
| while node is not None and node.next is not None: | ||
| if node.val == node.next.val: | ||
| # next nodeと値が同じ時はnodeを進めない. | ||
| node.next = node.next.next | ||
| continue | ||
|
|
||
| node = node.next | ||
|
|
||
| return head | ||
| ``` | ||
|
|
||
| ## Step2 | ||
| https://discord.com/channels/1084280443945353267/1195700948786491403/1196399353116499970 | ||
| このような解き方がある. Step1の二個目の解法を二重のwhileに書き直したもの. | ||
|
|
||
|
|
||
| ```py | ||
| class Solution: | ||
| def deleteDuplicates(self, head: Optional[ListNode]) -> Optional[ListNode]: | ||
| node = head | ||
| while node is not None: | ||
| while node.next is not None and node.val == node.next.val: | ||
| node.next = node.next.next | ||
|
|
||
| node = node.next | ||
|
|
||
| return head | ||
| ``` | ||
| また, | ||
| https://github.com/docto-rin/leetcode/pull/3 | ||
| 上記を参考に, while => 再帰に書き換えてみる. | ||
| whileの中身をそのままマッピングしていく感じ. | ||
| ```py | ||
| class Solution: | ||
| def deleteDuplicates(self, head: Optional[ListNode]) -> Optional[ListNode]: | ||
| if head is None or head.next is None: | ||
| return head | ||
|
|
||
| if head.val == head.next.val: | ||
| head.next = head.next.next | ||
| return self.deleteDuplicates(head) | ||
|
|
||
| head.next = self.deleteDuplicates(head.next) | ||
| return head | ||
|
|
||
| ``` | ||
| こう書くこともできる. | ||
| ```py | ||
| class Solution: | ||
| def deleteDuplicates(self, head: Optional[ListNode]) -> Optional[ListNode]: | ||
| if head is None or head.next is None: | ||
| return head | ||
|
|
||
| # head.nextに入るのは, それ以降を再帰的に処理したノードの列. | ||
| head.next = self.deleteDuplicates(head.next) | ||
| if head.val == head.next.val: | ||
| # 先頭を飛ばす. | ||
| return head.next | ||
|
|
||
| # 飛ばさない. | ||
| return head | ||
| ``` | ||
|
|
||
|
|
||
| ## Step3 | ||
| 苦手な再帰で練習. | ||
|
|
||
| ```py | ||
| class Solution: | ||
| def deleteDuplicates(self, head: Optional[ListNode]) -> Optional[ListNode]: | ||
| if head is None or head.next is None: | ||
| return head | ||
|
|
||
| if head.val == head.next.val: | ||
| head.next = head.next.next | ||
| return self.deleteDuplicates(head) | ||
|
|
||
| head.next = self.deleteDuplicates(head.next) | ||
| return head | ||
|
|
||
| ``` | ||
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
以前同じ問題を解いた時に受けた指摘があり、こちら参考になるかなと思います。
https://github.com/TakayaShirai/leetcode_practice/pull/3/files#r2520130451