[LeetCode] Duplicate Zeros
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...
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...
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. 리스트가 주어질 때...
코딩테스트 데모 예제로 나왔던 문제이다.
스프링 애플리케이션 실행 시 아래 오류가 발생하는 경우가 있다. Error creating bean with name 'myLogger': Scope 'request' is not active for the current thread; consider defining a scop...
Question Given an array nums of integers, return how many of them contain an even number of digits. 리스트가 주어질 때, 자리수가 짝수인 수의 개수를 구하는 문제였다.