728x90
https://school.programmers.co.kr/learn/courses/15008/lessons/121683?language=cpp
소스코드
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string solution(string input_string) {
string answer = "";
for (int i = 0; i < input_string.size(); i++)
{
bool same = true;
char temp = input_string[i];
for (int j = i + 1; j < input_string.size(); j++)
{
if (temp != input_string[j])
same = false;
if (same == false && temp == input_string[j])
{
if (answer.find(input_string[j]) == -1)
answer += input_string[j];
}
}
}
if (answer == "")
answer += "N";
sort(answer.begin(), answer.end());
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] Lv2 조건에 부합하는 중고거래 댓글 조회하기 ORACLE (1) | 2023.12.20 |
---|---|
[프로그래머스] Lv2 혼자서 하는 틱택토 C# (1) | 2023.12.20 |
[프로그래머스]Lv1 성격 유형 검사하기 C++ (map) (0) | 2023.09.12 |
[프로그래머스]Lv1 숫자 짝꿍C++ (char 숫자 int로 변경) (0) | 2023.09.08 |
[프로그래머스]Lv1 삼총사 C++ (0) | 2023.09.07 |