PY/MATH
Challenges
Linear functions · Hard

Intersect Two Lines

Write `intersect(m1, b1, m2, b2)` returning `[x, y]` where the lines meet. Assume they meet (m1 ≠ m2).

solution.py○ Loading…
Loading...
Console
Test cases
intersect(1, 0, -1, 4)PENDING
HiddenPENDING
Hints