티스토리 뷰
title: "숫자 게임"
category: 프로그래머스[Level-3]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-02-16"
문제 링크
C++
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<int> A, vector<int> B) {
int answer = 0;
// 오름차순 정렬
stable_sort(A.begin(), A.end());
stable_sort(B.begin(), B.end());
int indexA=0;
int indexB=0;
while(indexB<B.size()){
if(A[indexA] < B[indexB++]){
// B가 이겼을 때
indexA++;
answer++;
}
}
return answer;
}
JavaScript
function solution(A, B) {
var answer = 0;
// 오름차순
A.sort((a, b) => a - b);
B.sort((a, b) => a - b);
let idxA = 0;
B.forEach((b) => {
if (A[idxA] < b) {
// B가 이길 경우
idxA++;
answer++;
}
});
return answer;
}
728x90
반응형
'Programmers Solutions > Level-3' 카테고리의 다른 글
[프로그래머스] 경주로 건설 (0) | 2021.02.20 |
---|---|
[프로그래머스] 기지국 설치 (0) | 2021.02.20 |
[프로그래머스] 방문 길이 (0) | 2021.02.20 |
[프로그래머스] 야근 지수 (0) | 2021.02.20 |
[프로그래머스] 줄 서는 방법 (0) | 2021.02.16 |
댓글