[프로그래머스][Python] x만큼 간격이 있는 n개의 숫자 def solution(x,n): return set(range(x,x*n+x,x)) Share on Twitter Facebook LinkedIn Previous Next