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
- SQL
- greedy
- array
- Number Theory
- implement
- string
- 자바
- simulation
- 구현
- Matrix
- database
- 파이썬
- geometry
- dynamic programming
- 코딩테스트
- Tree
- Stack
- Binary Tree
- 코테
- bit manipulation
- Class
- Binary Search
- hash table
- Data Structure
- two pointers
- java
- Method
- sorting
- Counting
- Math
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.1] 정수 내림차순으로 배치하기 본문
1. Input
1) 정수 n
2. Output
1) n의 각 자릿수를 큰것부터 작은 순으로 정렬한 새로운 정수
3. Constraint
1) n은 1이상 8,000,000,000 이하인 자연수
4. Example
Input: n=118372 -> Output: 873211
5. Code
1) 첫 코드(2022/??)
import java.util.Arrays;
String answer = "";
if(n==0) return 0;
int[] digit = new int[(int)Math.log10(n)+1];
int i = 0;
while(n>=1) {
digit[i++] = (int)(n%10);
n /= 10;
}
Arrays.sort(digit);
for(i=digit.length-1 ; i>=0 ; i--)
answer += digit[i] + "";
return Long.parseLong(answer);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.2] 최솟값 만들기 (0) | 2022.11.24 |
---|---|
[프로그래머스/Lv.1] 자연수 뒤집어 배열로 만들기 (0) | 2022.11.24 |
[프로그래머스/Lv.1] 정수 제곱근 판별 (0) | 2022.11.24 |
[프로그래머스/Lv.1] 제일 작은 수 제거하기 (0) | 2022.11.24 |
[프로그래머스/Lv.1] 짝수와 홀수 (0) | 2022.11.24 |