작성일 :

문제 링크

5357번 - Dedupe

설명

문자열 파싱과 구현 문제입니다.

입력으로 주어지는 문자열에서
바로 이전 문자와 동일한 문자가 중복되어 등장하는 경우 에 대해서는 해당 문자들을 모두 한 문자 로 취급해야 합니다.

위의 조건에 맞추어 문자열을 가공한 후, 최종적으로 문제에서 요구하는 형식에 맞게 문자열을 출력합니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace Solution {
  class Program {
    static void Main(string[] args) {

      int.TryParse(Console.ReadLine(), out int n);

      for (int i = 0; i < n; i++) {
        string? input = Console.ReadLine(),
                ans = input.Substring(0, 1);

        for (int j = 1; j < input?.Length; j++) {
          if (input[j] == input[j - 1]) continue ;
          ans += input[j];
        }

        Console.WriteLine(ans);
      }

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int n; cin >> n;

  for (int i = 0; i < n; i++) {
    string input; cin >> input;
    string ans = input.substr(0, 1);

    for (size_t j = 1; j < input.length(); j++) {
      if (input[j] == input[j - 1]) continue;
      ans += input[j];
    }

    cout << ans << "\n";
  }

  return 0;
}