티스토리 뷰
Problem
Write a function that takes an unsigned integer and returns the number of '1' bits it has (also known as the Hamming weight).
Note:
- Note that in some languages, such as Java, there is no unsigned integer type. In this case, the input will be given as a signed integer type. It should not affect your implementation, as the integer's internal binary representation is the same, whether it is signed or unsigned.
- In Java, the compiler represents the signed integers using 2's complement notation. Therefore, in Example 3, the input represents the signed integer. -3.
Example 1:
Input: n = 00000000000000000000000000001011
Output: 3
Explanation: The input binary string 00000000000000000000000000001011 has a total of three '1' bits.
Example 2:
Input: n = 00000000000000000000000010000000
Output: 1
Explanation: The input binary string 00000000000000000000000010000000 has a total of one '1' bit.
Example 3:
Input: n = 11111111111111111111111111111101
Output: 31
Explanation: The input binary string 11111111111111111111111111111101 has a total of thirty one '1' bits.
Constraints:
- The input must be a binary string of length 32.
Follow up: If this function is called many times, how would you optimize it?
Solution
unsinged integer를 그 정수가 가진 1의 갯수로 반환하는 기능을 구현하는 문제입니다.
bit shift를 이용해 간단히 해결할 수 있습니다.
public class Solution {
public int hammingWeight(int n) {
int num = 0;
for (int i = 0; i < 32; i++) {
if ((n & 1) == 1) {
num++;
}
n = n >> 1;
}
return num;
}
}
Test
package io.lcalmsky.leetcode.number_of_1_bits;
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(521, 3),
() -> test(2097152, 1),
() -> test(-3, 31)
);
}
private void test(int given, int expected) {
// when
Solution solution = new Solution();
int actual = solution.hammingWeight(given);
// then
assertEquals(expected, actual);
}
}
문제에 자바 컴파일러 때문에 n을 정확히 표현할 수 없다고 나와있으므로 2진수를 정수로 변환해서 테스트해야 합니다.
그리고 예제 3번의 경우 실제로는 -3을 나타내므로 마찬가지로 -3을 넣어서 테스트 해야 합니다.
'Algorithm > LeetCode' 카테고리의 다른 글
268. Missing Number (0) | 2022.06.10 |
---|---|
1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree (0) | 2022.06.04 |
47. Permutations II (0) | 2022.05.28 |
1302. Deepest Leaves Sum (0) | 2022.05.27 |
329. Longest Increasing Path in a Matrix (0) | 2022.05.26 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- leetcode
- Spring Boot JPA
- gRPC
- Java
- spring boot application
- 클린 아키텍처
- 함께 자라기
- Spring Boot Tutorial
- spring boot jwt
- @ManyToOne
- 스프링 부트 튜토리얼
- 스프링 부트
- 스프링 부트 애플리케이션
- proto3
- Spring Data JPA
- Jackson
- QueryDSL
- 스프링부트
- Linux
- JSON
- JPA
- spring boot app
- Spring Boot
- intellij
- 스프링 데이터 jpa
- 헥사고날 아키텍처
- 스프링 부트 회원 가입
- 알고리즘
- 함께 자라기 후기
- r
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함