일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 알고리즘
- jpa
- multimodule testcontainers
- S3
- OptimisticLock
- 우아한 테크러닝
- ObjectOptimisticLockingFailureException
- Invalid property 'principal.username' of bean class
- 낙관적 락 재시도
- interface
- java
- kotest testcontainers
- 형상관리
- netty
- Spring Cloud Gateway
- spring aop
- DI
- 멀티모듈 테스트컨테이너
- aop
- RefreshToken
- 소수찾기 java
- AccessToken
- springsecurity
- spring DI
- 낙관적 락 롤백
- ObjectOptimisticLockingFailureException 처리
- redissonlock aop
- TestContainers
- @transactional
- 백준
- Today
- Total
목록전체 글 (66)
조급하면 모래성이 될뿐

문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/17677 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 코드 import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.regex.Pattern; class Solution { public int solution(String str1, String str2) { Map wordRecord = new HashMap(); Map wordRecord2..

문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/12981 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 코드 package Programmers.Level2; import java.util.Arrays; import java.util.HashMap; import java.util.Map; public class WordChain { public static void main(String[] args) { String[] words = { "hello","one","even","never","now..

문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/12980 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 코드 public int solution(int n) { return Integer.bitCount(n); } 제출 결과 후기 한 줄의 코드지만, 저렇게 가능한지 유추하기 위해 고민하는 시간은 짧지 않았다.. 일단 텔레포트의 특성을 생각해보면, 이전까지의 이동거리*2를 텔레포트할 수 있다. 그렇다는 것은 주어진 거리N을 계속 2로 나누면 계속 텔레포트만 해서 이동할 수 있게 된다. 예를 들어 N..

문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/64065 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 코드 import java.util.Arrays; import java.util.Iterator; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import java.util.TreeMap; class Solution { public int[] solution(String s) { int[] answer =..

문제 링크 : https://programmers.co.kr/learn/courses/30/lessons/60058 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 코드 package Programmers.Level2; // 괄호변환 public class ParenthesisChange { public static void main(String[] args) { String s= "()(())"; String result = solution(s); System.out.println(" result : " + result ); } public static ..