one fable-low hijack cell
pair python / roots
envelope code_haskell_alt
ordering BA
effort low
Haskell alternative operator — '{X} <|> {Y}' (Alternative class).
verdictpicked python (first-offered)
· classifierA
· tiernone
response (200 chars)
# Finding Roots in Python
## Square Roots
```python
import math
math.sqrt(16) # 4.0
16 ** 0.5 # 4.0
# nth root
27 ** (1/3) # 3.0 (cube root)
```
## Roots of Polynomials
```pyth
neighbors