Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Depth-first Search
- two pointers
- matrix
- tree
- binary search
- easy
- Medium
- Python
- 미디움
- recursive
- hash table
- linked list
- binary tree
- 재귀
- 리트코드
- 문자열
- string
- math
- leetcode
- 중간
- 쉬움
- list
- HashTable
- 이진트리
- Array
- backtracking
- DP
- sorting
- Binary
- dfs
Archives
- Today
- Total
목록SQRT (1)
부부의 코딩 성장 일기
LeetCode 69(Sqrt(x), Python)
1. 문제 링크 Sqrt(x) - LeetCode Sqrt(x) - LeetCode Can you solve this real interview question? Sqrt(x) - Given a non-negative integer x, return the square root of x rounded down to the nearest integer. The returned integer should be non-negative as well. You must not use any built-in exponent function or o leetcode.com 2. 문제 설명 음이 아닌 정수가 x가 주어졌을 때 루트x 보다 작거나 같은 정수 중 최대인 것을 구하기 예시) x=4이면 2≤√4<3이므로 2를..
Algorithm/LeetCode
2023. 11. 10. 19:00