[Codility] CyclicRotation (Java)
문제 An array A consisting of N integers is given. Rotation of the array means that each element is shifted right by one index, and the last element of the array is moved to the first place. For example, the rotation of array A = [3, 8, 9, 7, 6] is [6, 3, 8, 9, 7] (elements are shifted right by one index and 6 is moved to the first place). The goal is to rotate array A K times; that is, each eleme..
2021. 3. 24.
[JAVA] LocalDate, LocalTime, LocalDateTime 정리
LocalDate, LocalTime, LocalDateTime 정리 JodaTime이 Java의 기본으로 통합되며 생긴 날짜/시간 Object, Java8 부터 사용 가능하다. LocalDate : 년,월,일 정보 LocalTime : 시,분,(초),(나노초) 정보 LocalDateTime : 년,월,일,시,분,(초),(나노초) 정보 초와 나노초는 항상 생략 가능하다. 현재시간 구하기 LocalDateTime localDateTime = LocalDateTime.now(); LocalDate localDate = LocalDate.now(); LocalTime localTime = LocalTime.now(); 3종세트 toString LocalDate : yyyy-MM-dd LocalTime : HH..
2020. 11. 13.