[LeetCode] #263 - Ugly Number
주어진 문제는 아래와 같다. -------------------------------------------------------------------------------- 난의도 : ★★☆☆☆ Write a program to check whether a given number is an ugly number. Ugly numbers are positive numbers whose...
주어진 문제는 아래와 같다. -------------------------------------------------------------------------------- 난의도 : ★★☆☆☆ Write a program to check whether a given number is an ugly number. Ugly numbers are positive numbers whose...
이번 문제는 3Sum문제와 유사하지만 3개정수의 합이 입력받은 target에 가까운 수의 정수를 리턴하는 문제이다. 난의도 : ★★★☆☆ Given an array nums of n integers and an integer target,...
이번 포스트에서는 지난번에 구현한 3Sum [https://blog.chulgil.me/leetcode-015/]의 속도를 개선시킨 알고리즘을 설명한다. 알고리즘 설명은 이 링크 [https://blog.chulgil.me/leetcode-015/]에서...
지난 포스트에서 Two Sum을 구현했었는데 이번 Three Sum문제에서 활용할 수 있다. 먼저 문제는 아래와 같다. Given an array nums of n integers, are there elements...
LeetCode 에서 Three Sum 문제를 해결하기 위해서는 Two Sum을 구현할 줄 알아야하므로 Two Sum을 구현해보려한다. https://leetcode.com/problems/two-sum/solution/ > Given an array...
Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: 1 -> A 2 -> B...