목록알고리즘/프로그래머스 (183)
쌓고 쌓다
https://school.programmers.co.kr/learn/courses/30/lessons/12926?language=cpp# 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 전체 코드 #include #include using namespace std; string solution(string s, int n) { string answer = ""; for(int i=0;i='A'&&s[i]'Z') s[i]=('A'-1)+(s[i]+n)%'Z'; else s[i]+=n; } else if(s[i]>='a'&&s[i]'z') s[i]=('a'-..
https://school.programmers.co.kr/learn/courses/30/lessons/12928?language=cpp 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 전체 코드 #include #include using namespace std; int solution(int n) { int answer = 0; for(int i=1;i
https://school.programmers.co.kr/learn/courses/30/lessons/12925?language=cpp 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 전체 코드 #include #include using namespace std; int solution(string s) { int answer = 0; answer=stoi(s); return answer; } 간단히 stoi 함수를 이용하면 풀 수 있습니다.
https://school.programmers.co.kr/learn/courses/30/lessons/12922?language=cpp 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 전체 코드 #include #include using namespace std; string solution(int n) { string answer = ""; for(int i=0;i
https://school.programmers.co.kr/learn/courses/30/lessons/12919?language=cpp 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 전체 코드 #include #include using namespace std; string solution(vector seoul) { string answer = ""; for(int i=0;i
https://school.programmers.co.kr/learn/courses/30/lessons/12915?language=cpp# 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 방법(1) - comp 함수를 만들기 #include #include #include using namespace std; int idx; bool comp(string a, string b) { if(a[idx]
https://school.programmers.co.kr/learn/courses/30/lessons/12918?language=cpp 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 전체 코드 #include #include using namespace std; bool solution(string s) { bool answer = true; if(s.length()!=4&&s.length()!=6) answer=false; else { for(int i=0;i
https://school.programmers.co.kr/learn/courses/30/lessons/12917?language=cpp 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 풀이 (1) - 버블 정렬 #include #include #include using namespace std; string solution(string s) { string answer = ""; for(int i=0;i