일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 릿코드 파이썬
- 알고리즘풀이
- python xor
- 파이썬알고리즘
- python priority queue
- LeetCode
- 코틀린기초
- 릿코드 풀기
- python 알고리즘
- 파이썬알고리즘풀기
- python zip_longest
- python sorted
- 릿코드풀기
- 파이썬 알고리즘 풀기
- 파이썬릿코드풀기
- 파이썬 릿코드
- 릿코드
- leetcode 풀기
- python 릿코드
- 릿코드풀이
- binary search
- leetcode풀이
- leetcode풀기
- 상가수익률계산기
- 파이썬 프로그래머스
- 파이썬릿코드
- python Leetcode
- 잇츠디모
- 파이썬 알고리즘
- 알고리즘풀기
- Today
- Total
목록python 릿코드 풀기 (2)
소프트웨어에 대한 모든 것
56. Merge Intervals https://leetcode.com/problems/merge-intervals/ Merge Intervals - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제) 솔루션1) straight forward class Solution: def merge(self, intervals: List[List[int]]) -> List[List[int]]: intervals = sorted(intervals, key=lambda x..
1002. Find Common Characters https://leetcode.com/problems/find-common-characters/ Find Common Characters - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제) 솔루션1) - brute force 하나의 타겟 단어를 정하고 모든 단어를 비교해 가면서 중복되지 않는 단어를 제거해서 최종적으로 남은 char를 리턴합니다. # brute-force class Solution: def..