본문 바로가기

Tech for good

검색하기
Tech for good
프로필사진 Diana Kang

  • All (194) N
    • Profile (2)
    • IT (180) N
      • Data Science (38)
      • Computer Science (121) N
      • Cloud (20)
    • Book & Article (11)
Guestbook
Notice
Recent Posts
Recent Comments
Link
  • Github
«   2025/07   »
일 월 화 수 목 금 토
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
more
Archives
Today
Total
관리 메뉴
  • 글쓰기
  • 방명록
  • RSS
  • 관리

목록2025/07/15 (1)

Tech for good

[Neetcode/Array, Binary Search] Binary Search

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
이전 Prev 1 Next 다음

Blog is powered by kakao / Designed by Tistory

티스토리툴바