remagine
최근 부분취소 관련하여 로직이 수정된 부분이 있어, 이 부분을 거래대사에 녹여내는 작업이 있었습니다. 불일치 거래 내역 중 플러스 거래 이면 불일치에서 제외한다 for(ByddCmpProc plusData : plusDataList){ for(ByddCmpProc diffData : diffDataList){ if(StringUtils.equals(plusData.getCommcAprvNo(),diffData.getCommcAprvNo())){ diffDataList.remove(diffData); } } } 상기 코드가 추가 되었고, 간단한 반영이라고 생각했습니다. 실제로 배치를 실행해 보니 에러로그가 찍혔습니다. [2019-04-29 10:14:52.374|ERROR|o.s.batch.core.ste..
Task descriptionA non-empty zero-indexed array A consisting of N integers is given. The array contains an odd number of elements, and each element of the array can be paired with another element that has the same value, except for one element that is left unpaired.For example, in array A such that: A[0] = 9 A[1] = 3 A[2] = 9 A[3] = 3 A[4] = 9 A[5] = 7 A[6] = 9the elements at indexes 0 and 2 have..
A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary representation of N.For example, number 9 has binary representation 1001 and contains a binary gap of length 2. The number 529 has binary representation 1000010001 and contains two binary gaps: one of length 4 and one of length 3. The number 20 has binary re..