PY/MATH
Challenges
Sequences · Easy

Arithmetic Sequence

Write `arith_seq(a, d, n)` returning the first `n` terms with first term `a` and common difference `d`.

Concepts
Read lesson
solution.py○ Loading…
Loading...
Console
Test cases
arith_seq(1, 2, 5)PENDING
HiddenPENDING
Hints