Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 원형
- 탄막 스킬 범위
- 마우스 따라다니기
- 그리디알고리즘
- 3344
- 유니티
- 18249
- 강의실2
- 토글 그룹
- MySQL
- 3273
- 수 만들기
- 자료구조 목차
- 2020 KAKAO BLIND RECRUITMENT
- 영상 프레임 추출
- 알고리즘
- 탄막
- 알고리즘 목차
- 우분투
- 문자열 압축
- 걷는건귀찮아
- 윈도우
- c#
- 백준
- 회의실 배정
- SWEA
- 탄막 이동
- 단어 수학
- AI Hub
- mysqld.sock
Archives
- Today
- Total
와이유스토리
[문자열 뒤집기] 프로그래머스 [1차] 비밀 지도 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/17681
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<string> solution(int n, vector<int> arr1, vector<int> arr2) {
vector<string> answer;
for(int i=0; i<arr1.size(); i++) {
string temp = "";
for(int j=0; j<arr1.size(); j++) {
if ((arr1[i]%2==0) && (arr2[i]%2==0)) temp += " ";
else temp += "#";
arr1[i]/=2;
arr2[i]/=2;
}
reverse(temp.begin(), temp.end());
answer.push_back(temp);
}
return answer;
}
'코딩테스트 > 문자열' 카테고리의 다른 글
[딕셔너리] 프로그래머스 [3차] 압축 Python (0) | 2022.02.04 |
---|---|
[문자열 변환] 프로그래머스 [3차] 방금그곡 Python (0) | 2022.02.04 |
[문자열] 프로그래머스 신고 결과 받기 Python (0) | 2022.02.02 |
[문자열] 프로그래머스 숫자 문자열과 영단어 Python (0) | 2021.12.29 |
[문자열] 프로그래머스 신규 아이디 추천 C++, Python (0) | 2021.12.29 |
Comments