Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- implement
- Binary Tree
- 구현
- Stack
- hash table
- greedy
- 자바
- Class
- bit manipulation
- Binary Search
- simulation
- dynamic programming
- Method
- Number Theory
- Tree
- geometry
- database
- 코테
- SQL
- two pointers
- Counting
- Math
- 파이썬
- string
- Matrix
- array
- sorting
- java
- 코딩테스트
- Data Structure
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1323. Maximum 69 Number 본문
1. Input
1) 양의 정수 num
2) num은 6과 9로만 이루어져 있다.
2. Output
1) nums의 숫자를 1개만 바꿔서 만들수 있는 가장 큰 수
2) 9는 6으로, 6은 9로만 바꿀 수 있다.
3. Constraint
1) 1 <= num <= 10^4
4. Example
Input: num = 9669 -> Output: 9969
설명: 하나씩 다 바꿔보면 6669, 9969, 9699, 9666이 되고, 이 중 가장 큰 것은 십의 자리 수를 바꾼 9969가 되므로 이것을 반환한다.
5. Code
1) 첫 코드(2022/06/14)
String n = String.valueOf(num);
if(n.matches("[9]+"))
return num;
int index = 0;
for(int i=0 ; i<n.length() ; i++)
if(n.charAt(i) - '0' == 6){
index = i; break;
}
return num + (int)(3*Math.pow(10, n.length()-index-1));
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1346. Check If N and Its Double Exist (0) | 2022.12.24 |
---|---|
[LeetCode/Easy] 1342. Number of Steps to Reduce a Number to Zero (0) | 2022.12.24 |
[LeetCode/Easy] 1313. Decompress Run-Length Encoded List (0) | 2022.12.24 |
[LeetCode/Easy] 1299. Replace Elements with Greatest Element on Right Side (0) | 2022.12.24 |
[LeetCode/Easy] 1295. Find Numbers with Even Number of Digits (0) | 2022.12.24 |