문제
내가 해결한 답
1. Stream을 이용한 Sorting
import java.util.*;
import java.util.stream.Collectors;
class Solution {
public long solution(long n) {
String s = Arrays.stream(String.valueOf(n).split("")).sorted(Comparator.reverseOrder()).collect(Collectors.joining());
return Long.parseLong(s);
}
}
'알고리즘' 카테고리의 다른 글
[프로그래머스] 달리기 경주 (0) | 2023.05.31 |
---|---|
[프로그래머스] 그룹별 조건에 맞는 식당 목록 출력하기 (0) | 2023.05.29 |
프로그래머스 - x만큼 간격이 있는 n개의 숫자 (0) | 2022.12.19 |
프로그래머스 - 문자열 내 p와 y의 개수 (0) | 2022.12.19 |
프로그래머스 - 정수 제곱근 판별 (0) | 2022.12.19 |