일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코딩테스트
- Pro-Con
- 프로그래머스
- 취준
- algorithm
- GitHub Desktop
- 자소서
- DP
- C++
- Ultimate Search
- 리트코드
- SRE
- Github
- 격리수준
- Python
- 백트래킹
- 알고리즘 종류 정리
- python3
- ASF-110
- 네이버 검색 시스템
- Algorithmus
- 제노블레이드 2
- 알고리즘
- 프로콘
- git
- LeetCode
- baekjoon
- 프로콘 갈림현상
- 백준
- programmers
- 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..