문제 설명
처음 코드
def solution(num_list, n): return num_list[:n]
익명함수 lambda 로 풀어보기!
solution = lambda num_list, n : num_list[:n]