일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 zip_longest
- 알고리즘풀기
- 파이썬릿코드
- 릿코드 파이썬
- python 릿코드
- python sorted
- 파이썬알고리즘풀기
- leetcode 풀기
- 상가수익률계산기
- leetcode풀기
- 코틀린기초
- leetcode풀이
- 알고리즘풀이
- 릿코드 풀기
- 잇츠디모
- python Leetcode
- python xor
- 파이썬릿코드풀기
- binary search
- 릿코드풀기
- python priority queue
- LeetCode
- python 알고리즘
- 릿코드
- 파이썬 릿코드
- 파이썬 프로그래머스
- 릿코드풀이
- 파이썬알고리즘
- Today
- Total
목록파이썬릿코드풀기 (4)
소프트웨어에 대한 모든 것
283. Move Zeroes https://leetcode.com/problems/move-zeroes/ Move Zeroes - 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) 연산 수행 속도를 최소화하는 것이 follow up에 명시되어 있네요. 문제 자체는 쉬웠는데 속도가 너무 느리네요. 시간 복잡도가 O(n^2)입니다. 풀이 전략: 1) 배열에서 0에 해당하는 모든 인덱스를 검색 2) 0에 해당하는 요소의 마지막에 있는 것 부터 뒤로 s..
890. Find and Replace Pattern https://leetcode.com/problems/find-and-replace-pattern/ Find and Replace Pattern - 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 findAndReplacePattern(self, words: List[str], pattern: str) -> List[str]: matched = [] uniq..
441. Arranging Coins 제목 문제) 솔루션1) class Solution: def arrangeCoins(self, n: int) -> int: row = 0 while n > 0: n -= row + 1 row += 1 if n == 0: return row elif n < 0: return row -1
1732. Find the Highest Altitude https://leetcode.com/problems/find-the-highest-altitude/ Find the Highest Altitude - 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 largestAltitude(self, gain: List[int]) -> int: # The biker starts his trip on point 0 a..