일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Algorithmus
- 코딩테스트
- Python
- 제노블레이드 2
- baekjoon
- 리트코드
- Github
- 알고리즘
- ASF-110
- 백준
- DP
- SRE
- 네이버 검색 시스템
- 백트래킹
- Pro-Con
- 취준
- python3
- 프로콘
- git
- 격리수준
- algorithm
- LeetCode
- C++
- 자소서
- GitHub Desktop
- 알고리즘 종류 정리
- 프로그래머스
- programmers
- 프로콘 갈림현상
- Ultimate Search
- Today
- Total
목록Python (2)
산타는 없다
문제 원문 Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Follow up: Could you solve it without converting the integer to a string? Example 1: Input: x = 121 Output: true Example 2: Input: x = -121 Output: false Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome. Ex..
문제 원문 Implement atoi which converts a string to an integer. The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character takes an optional initial plus or minus sign followed by as many numerical digits as possible, and interprets them as a numerical value. The string can contain additional characters..