Leetcode 문제 이번에 풀어볼 문제는 리트코드 338번 문제 Counting Bits 이다. 우선 문제를 살펴보자. 리트코드 338번 문제 Counting Bits (링크) Counting Bits - LeetCode Counting Bits - LeetCode Can you solve this real interview question? Counting Bits - Given an integer n, return an array ans of length n + 1 such that for each i (0 0 1 --> 1 2 --> 10 Example 2: Input: n = 5 Output: [0,1,1,2,1,2] Explanation: 0 --> 0 1 --> 1 2 --> 10 3 -->..