title: "시저 암호" category: 프로그래머스[Level-1] tags: [C++, JavaScript, 프로그래머스] date: "2021-01-20" 문제 링크 시저 암호 C++ #include #include #include using namespace std; string solution(string s, int n) { string answer = ""; for(int i=0; i= 'A' && c
title: "문자열을 정수로 바꾸기" category: 프로그래머스[Level-1] tags: [C++, JavaScript, 프로그래머스] date: "2021-01-20" 문제 링크 문자열을 정수로 바꾸기 C++ #include #include using namespace std; int solution(string s) { int answer = 0; answer = stoi(s); return answer; } JavaScript function solution(s) { var answer = 0; answer = s * 1; return answer; }
title: "소수 찾기" category: 프로그래머스[Level-1] tags: [C++, JavaScript, 프로그래머스] date: "2021-01-20" 문제 링크 소수 찾기 C++ #include #include #include using namespace std; int solution(int n) { int answer = 0; vector check(n+1, true); // 인덱스 n까지 처음에는 모두 소수 for(int i=2; i
title: "서울에서 김서방 찾기" category: 프로그래머스[Level-1] tags: [C++, JavaScript, 프로그래머스] date: "2021-01-20" 문제 링크 서울에서 김서방 찾기 C++ #include #include using namespace std; string solution(vector seoul) { string answer = ""; answer += "김서방은 "; for(int i=0; i
title: "문자열 다루기 기본" category: 프로그래머스[Level-1] tags: [C++, JavaScript, 프로그래머스] date: "2021-01-20" 문제 링크 문자열 다루기 기본 C++ #include #include using namespace std; bool solution(string s) { bool answer = true; if(s.length()==4 || s.length()==6){ for(char c: s){ if(c >= '0' && c = "0" && s[i]