''' https://programmers.co.kr/learn/courses/30/lessons/12954 x๋งํผ ๊ฐ๊ฒฉ์ด ์๋ n๊ฐ์ ์ซ์ 0. x์ ๋ฐฐ์๋ฅผ n๊ฐ๋งํผ ์ถ๋ ฅ ''' def solution(x, n): return [i*x for i in range(1, n+1)] ''' '''
Last updated 3 years ago
Was this helpful?