diff options
| -rw-r--r-- | challenge-160/conor-hoekstra/ch-2.bqn | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/challenge-160/conor-hoekstra/ch-2.bqn b/challenge-160/conor-hoekstra/ch-2.bqn new file mode 100644 index 0000000000..6b79071034 --- /dev/null +++ b/challenge-160/conor-hoekstra/ch-2.bqn @@ -0,0 +1,5 @@ +EqIndex ← ¯1⌈´·/+`=+`⌾⌽ + +EqIndex 1‿3‿5‿7‿9 # 3 +EqIndex 1‿2‿3‿4‿5 # ¯1 +EqIndex 2‿4‿2 # 1 |
