Muscardinus

[프로그래머스] 정수 내림차순으로 배치하기(Lv1) 본문

알고리즘 문제/[프로그래머스] Lv1

[프로그래머스] 정수 내림차순으로 배치하기(Lv1)

Muscardinus 2020. 6. 9. 14:56
728x90

https://programmers.co.kr/learn/courses/30/lessons/12933?language=cpp

문제 설명

함수 solution은 정수 n을 매개변수로 입력받습니다. n의 각 자릿수를 큰것부터 작은 순으로 정렬한 새로운 정수를 리턴해주세요. 예를들어 n이 118372면 873211을 리턴하면 됩니다.

제한 조건

  • n은 1이상 8000000000 이하인 자연수입니다.

입출력 예

n return
118372 873211

JavaScript

function solution(n) {
    var answer = 0;
    n=n.toString().split("").sort((a,b)=>b-a).join("");
    answer=parseInt(n);
    return answer;
}

 

C++

#include <string>
#include <vector>
#include <algorithm>
using namespace std;

long long solution(long long n) {
    long long answer = 0;
    vector<int> temp;
    while(n){
        temp.push_back(n%10);
        n=n/10;
    }
    sort(temp.begin(),temp.end());
    int count=0;
    int gop=1;
    while(count<temp.size()){
        answer+=temp[count]*gop;
        count++;
        gop*=10;
    }
    return answer;
}

sort함수를 사용하려면 algorithm 라이브러리가 있어야함

728x90
Comments