일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 priority queue
- leetcode풀기
- 릿코드 파이썬
- 파이썬 알고리즘
- python zip_longest
- 릿코드 풀기
- 파이썬알고리즘풀기
- python 릿코드
- 릿코드풀이
- 파이썬알고리즘
- 파이썬 릿코드
- 알고리즘풀이
- python Leetcode
- python sorted
- leetcode 풀기
- 잇츠디모
- 릿코드
- 파이썬릿코드
- 상가수익률계산기
- 파이썬릿코드풀기
- 파이썬 프로그래머스
- LeetCode
- binary search
- 코틀린기초
- python 알고리즘
- leetcode풀이
- 알고리즘풀기
- python xor
- 릿코드풀기
- 파이썬 알고리즘 풀기
- Today
- Total
목록python algorithm (3)
소프트웨어에 대한 모든 것
973. K Closest Points to Origin https://leetcode.com/problems/k-closest-points-to-origin/ K Closest Points to Origin - 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) class Solution: def kClosest(self, points: List[List[int]], k: int) -> List[List[int]]: distances = [] fo..
1877. Minimize Maximum Pair Sum in Array https://leetcode.com/problems/minimize-maximum-pair-sum-in-array/ Minimize Maximum Pair Sum in Array - 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) 오름차순 정렬 후 최소, 최대 pair를 계속 구해나가서 max를 구한다. class Solution: def minPairSum(self, n..
1221. Split a String in Balanced Strings https://leetcode.com/problems/split-a-string-in-balanced-strings/ Split a String in Balanced Strings - 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) 순차적으로 'L' 문자수를 카운팅, 'R' 문자수를 카운팅해서 같아지는 시점에 balanced string 하나를 카운팅하고 'L', 'R' 문..