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 |
Tags
- DP
- Binary
- 이진트리
- Medium
- hash table
- backtracking
- 쉬움
- 문자열
- leetcode
- linked list
- recursive
- 재귀
- two pointers
- matrix
- 리트코드
- sorting
- easy
- binary search
- string
- dfs
- math
- list
- Array
- tree
- 미디움
- HashTable
- Depth-first Search
- 중간
- Python
- binary tree
Archives
- Today
- Total
목록2024/02/23 (1)
부부의 코딩 성장 일기
LeetCode 263(Ugly Number, Python)
1. 문제 링크 Ugly Number - LeetCode Ugly Number - LeetCode Can you solve this real interview question? Ugly Number - An ugly number is a positive integer whose prime factors are limited to 2, 3, and 5. Given an integer n, return true if n is an ugly number. Example 1: Input: n = 6 Output: true Explanation: 6 = leetcode.com 2. 문제 설명 주어진 숫자가 Ugly Number인지 판별하는 문제 Ugly Number란 오직 2, 3, 5 세 소수의 곱으로만 이루어..
Algorithm/LeetCode
2024. 2. 23. 19:00