최근 포스트

[LeetCode] Duplicate Zeros

1 분 소요

Question Given a fixed-length integer array arr, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements beyond t...

[LeetCode] Squares of a Sorted Array

최대 1 분 소요

Question Given an integer array nums sorted in non-decreasing order, return an array of the squares of each number sorted in non-decreasing order. 리스트가 주어질 때...

[SPRING] 스코프와 Provider, 프록시

3 분 소요

스프링 애플리케이션 실행 시 아래 오류가 발생하는 경우가 있다. Error creating bean with name 'myLogger': Scope 'request' is not active for the current thread; consider defining a scop...

[LeetCode] Find Numbers with Even Number of Digits

최대 1 분 소요

Question Given an array nums of integers, return how many of them contain an even number of digits. 리스트가 주어질 때, 자리수가 짝수인 수의 개수를 구하는 문제였다.