PY/MATH
Challenges
Linear functions · Medium

Line From Two Points

Write `line_from(x1, y1, x2, y2)` returning `[m, b]` for the line through both points.

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