사생활 보호 설정
https://gamjia.tistory.com
Updated News
Mini Rooms
답글수 [0]
What Friends Say
한마디로 표현해봐~
1촌평 관리
12933번 정수 내림차순으로 배치하기
GamJia 2023. 3. 21. 13:05
코딩테스트 연습 - Level 1 - 정수 내림차순으로 배치하기
https://programmers.co.kr/learn/courses/30/lessons/12933
#include <string> #include <vector> #include <algorithm> using namespace std; long long solution(long long n) { long long answer = 0; string s=to_string(n); sort(s.begin(),s.end(),greater<char>()); answer=stoll(s); return answer; }
🔊stoll==string to long long