#include <string>
#include <algorithm>
#include <vector>
using namespace std;
int solution(vector<int> A, vector<int> B)
{
int answer = 0;
sort(A.begin(),A.end());
sort(B.begin(),B.end());
int idxA=A.size()-1,idxB=B.size()-1;
while(idxA >= 0)
{
int valA=A[idxA],valB=B[idxB];
if(valB > valA)
{
answer++;
idxB--;
}
idxA--;
}
return answer;
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[3] 베스트 앨범 (0) | 2022.10.05 |
---|---|
[3] 이중 우선순위 큐 (0) | 2022.10.02 |
[3] 가장 먼 노드 (0) | 2022.10.02 |
[3] 섬 연결하기 (0) | 2022.10.01 |
[3] 단어 변환 (0) | 2022.09.29 |