No Rules Rules

숫자 문자열과 영단어 (feat. 프로그래머스, 81301번) 본문

생활/코테

숫자 문자열과 영단어 (feat. 프로그래머스, 81301번)

개발하는 완두콩 2022. 7. 21. 10:30
728x90
반응형

숫자 문자열과 영단어https://programmers.co.kr/learn/courses/30/lessons/81301

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

반응형
// woohyeon.kim
#include <string>
#include <vector>
#include <map>

using namespace std;

int solution(string s) {
    map<string, int> tmpl;
    tmpl["zero"] = 0;
    tmpl["one"] = 1;
    tmpl["two"] = 2;
    tmpl["three"] = 3;
    tmpl["four"] = 4;
    tmpl["five"] = 5;
    tmpl["six"] = 6;
    tmpl["seven"] = 7;
    tmpl["eight"] = 8;
    tmpl["nine"] = 9;
    
    size_t position = 0;
    for(auto iter = tmpl.begin(); iter != tmpl.end(); ++iter)
    {
        while((position = s.find(iter->first)) != string::npos)
        {
            s.replace(position, iter->first.size(), to_string(iter->second));
        }
    }
    int answer = stoi(s);
    return answer;
}
// *&)*@*

쉬운 문제군요!

728x90
반응형
Comments