일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코드업
- nlp
- array
- GenAI
- 파이썬알고리즘
- gcp
- two-pointer
- sql코테
- Stack
- SQL
- slidingwindow
- stratascratch
- 생성형AI
- 투포인터
- 니트코드
- 릿코드
- 슬라이딩윈도우
- Greedy
- 자연어처리
- 알고리즘
- LeetCode
- 리트코드
- Python
- 파이썬
- dfs
- 파이썬기초100제
- heap
- Python3
- GenerativeAI
- codeup
Archives
- Today
- Total
목록2025/07/15 (1)
Tech for good

1. Linear Searchclass Solution: def search(self, nums: List[int], target: int) -> int: for i in range(len(nums)): if target == nums[i]: return i return -1Time Complexity: O(n)2. Binary SearchBinary Search, Tree -> Narrow down the scope w/ starter, end and middle!There are two ways for a Binary Search.1. Two pointer + while loop2. Recursion2.1. Two point..
IT/Computer Science
2025. 7. 15. 11:21