티스토리 뷰
Problem
Given an integer n, return true if it is a power of four. Otherwise, return false.
An integer n is a power of four, if there exists an integer x such that n == 4x.
Example 1:
Input: n = 16
Output: true
Example 2:
Input: n = 5
Output: false
Example 3:
Input: n = 1
Output: true
Constraints:
-2^31 <= n <= 2^31 - 1
Solution
정수 n이 주어졌을 때 4의 제곱이면 true를 반환하는 문제입니다.
4의 제곱을 2진수로 표현하면 아래와 같습니다.
1 = 1
4 = 100
16 = 10000
64 = 1000000
256 = 10000000
...
1 이후 0이 두 개씩 증가하는 것을 확인할 수 있습니다.
따라서 1이 맨 앞에 한 개 존재하고 나머지가 0이며 0의 개수가 2의 배수이면 4의 제곱입니다.
public class Solution {
public boolean isPowerOfFour(int num) {
int numberOfZeros = 0;
int numberOfOnes = 0;
while (num > 0) {
if ((num & 1) == 1) { // 마지막 자리 수가 1이면
numberOfOnes++;
} else { // 마지막 자리 수가 0이면
numberOfZeros++;
}
num >>= 1; // 오른쪽으로 한 칸 bit shift
}
return numberOfOnes == 1 && (numberOfZeros % 2 == 0);
}
}
Test
package io.lcalmsky.leetcode.power_of_four;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class SolutionTest {
@Test
void testAll() {
assertAll(
() -> test(16, true),
() -> test(5, false),
() -> test(1, true)
);
}
private void test(int given, boolean expected) {
// when
Solution solution = new Solution();
boolean actual = solution.isPowerOfFour(given);
// then
assertEquals(expected, actual);
}
}
'Algorithm > LeetCode' 카테고리의 다른 글
383. Ransom Note (0) | 2022.08.29 |
---|---|
326. Power of Three (0) | 2022.08.27 |
234. Palindrome Linked List (0) | 2022.08.25 |
871. Minimum Number of Refueling Stops (0) | 2022.08.20 |
1338. Reduce Array Size to The Half (0) | 2022.08.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 스프링 부트 튜토리얼
- QueryDSL
- Linux
- spring boot jwt
- 클린 아키텍처
- Jackson
- Spring Boot
- 헥사고날 아키텍처
- @ManyToOne
- Java
- 스프링 부트 회원 가입
- 스프링 부트
- intellij
- 스프링 부트 애플리케이션
- proto3
- spring boot application
- JSON
- 스프링 데이터 jpa
- JPA
- 스프링부트
- 함께 자라기
- spring boot app
- Spring Boot JPA
- gRPC
- 함께 자라기 후기
- r
- Spring Boot Tutorial
- leetcode
- 알고리즘
- Spring Data JPA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함