https://leetcode.com/problems/palindrome-number/ Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.정수형 숫자가 회문인지 아닌지 판단하시오. 앞에서부터 읽어도 뒤에서부터 읽어도 같은 경우 회문인 숫자입니다. Example 1:Input: 121Output: trueExample 2: Example 2:Input: -121Output: falseExplanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore ..
https://leetcode.com/problems/reverse-integer/ Given a 32-bit signed integer, reverse digits of an integer. 32비트의 부호있는 정수가 있다, 정수의 숫자를 반전시켜라. Example 1:Input: 123Output: 321 Example 2:Input: -123Output: -321 Example 3:Input: 120Output: 21 Note: Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231, 231 − 1]. For the purpose of thi..
https://leetcode.com/problems/add-two-numbers/ You are given two non-empty linked lists representing two non-negative integers.The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list. You may assume the two numbers do not contain any leading zero, except the number 0 itself. Example:Input: (2 -> 4 -> 3) + (5 -> 6 -..
https://leetcode.com/problems/two-sum/ Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not use the same element twice. Example :Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9,return [0, 1]. 주어진 정수배열에서 더하여 특정값이 되는 두 숫자의 인덱스를 반환하라.각 입..
- Total
 
- Today
 
- Yesterday
 
- Maven LF #메이븐 개행문자
 - logback #logstash #LoggingEventCompositeJsonEncoder #로그JSON
 - multipleIntegrationFlow
 - lombok #maven build #sym
 - palindrome number
 - excel to markdown
 - spring #redis #redis-cluster
 - 로그파일인덱스
 - cannotResolveSymbol
 - mybatis @insert값 @update값
 - QR코드읽기 #ReadQRCode
 - Two Sum
 - AWS #X-Ray
 - opencv로qr코드인식
 - leetcode
 - excel table
 - webjar
 - PostgreSQL #sequnceName
 - spring-integration
 - Python #Powertools
 - Postgresql #MultiTruncate
 - SnakeYAML
 - PostgreSQL #FOR UPDATE #SKIP LOCKED
 - reverse integer
 - yaml
 - pdf.js
 - 로그테스트 #콘솔로그테스트 #System.out
 - springintegration #파일감시 #디렉토리감시 #파일완료검사
 - aws #aws region #aws credential #aws region provider #aws credential provier
 - add two numbers
 
| 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 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 | 
