웅재의 코딩세상

[프로그래머스] 문자열로 변환 본문

코딩테스트/프로그래머스 - LV 0

[프로그래머스] 문자열로 변환

웅드 2024. 1. 23. 15:19

 

 

  • 풀이
#include <string>
#include <vector>

using namespace std;

string solution(int n) {
    return to_string(n);
}
반응형