내 풀이
def solution(citations):
citations.sort(reverse=True)
l = len(citations)
cnt = 0
for i in range(l):
if citations[i] > i:
cnt += 1
return cnt
내 풀이
def solution(citations):
citations.sort(reverse=True)
l = len(citations)
cnt = 0
for i in range(l):
if citations[i] > i:
cnt += 1
return cnt
내 풀이
def solution(array, commands):
answer = []
numbers = []
for i in commands:
numbers = sorted(array[i[0]-1:i[1]])
answer.append(numbers[i[2]-1])
return answer
다른 사람 풀이(최홍범님)
def solution(array, commands):
answer = []
for command in commands:
i,j,k = command
answer.append(list(sorted(array[i-1:j]))[k-1])
return answer
면접일자 : 11/6
위치 : 국민대 경영관
지원자 수는 석박 통합 포함 10명 이내
1:3 면접
면접 시간은 10분 이내였음
딱딱한 분위기
자소서 기반 질문 위주
전공지식 X