๐ฌ ๋ฌธ์ ์ค๋ช
x๋งํผ ๊ฐ๊ฒฉ์ด ์๋ n๊ฐ์ ์ซ์
ํจ์ solution์ ์ ์ x์ ์์ฐ์ n์ ์
๋ ฅ ๋ฐ์, x๋ถํฐ ์์ํด x์ฉ ์ฆ๊ฐํ๋ ์ซ์๋ฅผ n๊ฐ ์ง๋๋ ๋ฆฌ์คํธ๋ฅผ ๋ฆฌํดํด์ผ ํฉ๋๋ค. ๋ค์ ์ ํ ์กฐ๊ฑด์ ๋ณด๊ณ , ์กฐ๊ฑด์ ๋ง์กฑํ๋ ํจ์, solution์ ์์ฑํด์ฃผ์ธ์.
๐ ์ ํ ์ฌํญ
- x๋ -10000000 ์ด์, 10000000 ์ดํ์ธ ์ ์์ ๋๋ค.
- n์ 1000 ์ดํ์ธ ์์ฐ์์ ๋๋ค.
๐ก ๋์ ํ์ด
def solution(x, n):
answer = []
for i in range (1, n+1):
a = i * x
answer.append(a)
return answer
* ๋๋ ์ค๋ฅ: list index out of range
list index out of range
๐ก ๋ค๋ฅธ ํด์ค
pass
๐๐ป ๋ฌธ์ ๋ฐ๋ก๊ฐ๊ธฐ
https://programmers.co.kr/learn/courses/30/lessons/12954#qna
'Coding > Code in the Morning' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
211224_Code in the morning (0) | 2021.12.24 |
---|---|
211222_Code in the morning (0) | 2021.12.23 |
211206_Code at Night โญ๏ธ (0) | 2021.12.06 |
211129_Code in the morning (0) | 2021.11.29 |
211126_Code in the morning (0) | 2021.11.26 |