Skip to content

Conversation

sean424
Copy link
Contributor

@sean424 sean424 commented Jul 20, 2024

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은 이분탐색도 지원해주는군요..?
문제풀이 하는 것이니만큼 이분탐색을 구현해보는 것도 좋은 연습이 될 것 같아요. :)

@sean424 sean424 merged commit 274370b into DaleStudy:main Jul 22, 2024
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