blob: a91ac0ade3b49ce00533ff8641e61a9bc030a1f4 (
plain)
1
2
3
4
5
6
7
|
#/usr/bin/env bqn
MaxPositiveNegative ← (+´0⊸<)⌈(+´0⊸>)
•Show MaxPositiveNegative ⟨-3, 1, 2, -1, 3, -2, 4⟩
•Show MaxPositiveNegative ⟨-1, -2, -3, 1⟩
•Show MaxPositiveNegative ⟨1, 2⟩
|