Skip to content

[bhyun-kim, 김병현] Week 12 Solutions #194

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

Merged
merged 1 commit into from
Jul 22, 2024
Merged

Conversation

bhyun-kim
Copy link
Contributor

No description provided.

Copy link
Member

@WhiteHyun WhiteHyun left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이번주 고생하셨습니다. 😁

def lengthOfLIS(self, nums: List[int]) -> int:
sub = []
for num in nums:
pos = bisect_left(sub, num)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

python은 이분탐색도 지원해주는군요..?
문제풀이 하는 것이니만큼 이분탐색을 구현해보는 것도 좋은 연습이 될 것 같아요. :)

@bhyun-kim bhyun-kim merged commit 274370b into DaleStudy:main Jul 22, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
No open projects
Status: Done
Development

Successfully merging this pull request may close these issues.

2 participants