일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- sql
- 스택
- 독일어
- 롯데정보통신
- istringstream
- 부주상골
- 독학
- 독일어독학
- 부주상골수술후기
- ChatGPT
- 부주상골수술
- 백준
- SWIFT
- 분할정복
- 리눅스
- 카카오인턴십
- BFS
- dp
- 코테
- 카카오코테
- 세브란스
- c++
- IOS
- DFS
- 부주상골증후군
- SQLD
- 프로그래머스
- 카카오인턴
- 코딩테스트
- 구현
Archives
- Today
- Total
슈뢰딩거의 고등어
[프로그래머스] 신규아이디 추천 본문
https://programmers.co.kr/learn/courses/30/lessons/72410?language=cpp
#include <string>
#include <vector>
#include <iostream>
using namespace std;
string solution(string new_id) {
string answer = "";
string x = "~!@#$%^&*()=+[{]}:?,<>/";
for (int i=0; i<new_id.size(); i++) {
if (new_id[i] >= 65 && new_id [i] <= 90){
answer+= tolower(new_id[i]);
continue;
}
bool exits = false;
for(int j=0; j<x.size(); j++) {
if (new_id[i] == x[j]) {
exits = true;
break;
}
}
if (exits == false)
answer += new_id[i];
}
for(int i=1; i<answer.size();) {
if (answer[i-1] == '.' && answer[i] == '.'){
answer.erase(answer.begin() + i);
continue;
}
else
i++;
}
if (answer.front() == '.') answer.erase(answer.begin());
if (answer.back() == '.') answer.erase(answer.end() - 1);
if (answer == "")
answer = "a";
if (answer.size() >= 16) {
answer = answer.substr(0, 15);
if (answer[14] == '.')
answer = answer.substr(0, 14);
}
while (answer.size() < 3) {
int len = answer.size();
answer += answer[len-1];
}
return answer;
}
'알고리즘' 카테고리의 다른 글
[백준] 12865 평범한 배낭 (0) | 2022.02.08 |
---|---|
[프로그래머스] 없는 숫자 더하기 (0) | 2022.02.08 |
[프로그래머스] 문자열 압축 (0) | 2022.02.08 |
[프로그래머스] 행렬 테두리 회전하기 (0) | 2022.02.08 |
[프로그래머스] 로또의 최고 순위와 최저순위 (0) | 2022.02.08 |
Comments