-
[프로그래머스/Level 1] 문자열 내 마음대로 정렬하기 (C++)알고리즘 문제풀이/프로그래머스 2020. 10. 24. 23:11
programmers.co.kr/learn/courses/30/lessons/12915
풀이
풀이가 필요하진 않지만, 문자열이랑 정렬 문제에 약해서 기록하는 용도!
전체 코드
#include <string> #include <vector> #include <algorithm> using namespace std; int idx; int cmp(string a, string b) { if(a[idx]!=b[idx]) { return a[idx]<b[idx]; } else { return a<b; } } vector<string> solution(vector<string> strings, int n) { idx=n; sort(strings.begin(),strings.end(),cmp); return strings; }
'알고리즘 문제풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/Level 1] 시저 암호 (C++) (0) 2020.10.26 [프로그래머스/Level 1] 소수 찾기 (C++) (0) 2020.10.26 [프로그래머스/Level 1] 크레인 인형 뽑기 (C++) (0) 2020.10.24 [프로그래머스/Level 2] 주식가격 (C++) (0) 2020.10.12 [프로그래머스/Level 3] 베스트앨범 (C++) (0) 2020.10.10