tvl-depot/users/sterni/exercises/aoc/lib.bqn
sterni 835ea6ca7d feat(sterni/aoc/2022): day21.1 BQN solution
This one is not finished yet, but needs to move of this laptop by ways
of git.

Change-Id: I2c8c0a7b581a654f7cfab92dd21ced82a14c5f42
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7616
Tested-by: BuildkiteCI
Autosubmit: sterni <sternenseemann@systemli.org>
Reviewed-by: sterni <sternenseemann@systemli.org>
2022-12-23 14:34:55 +00:00

18 lines
554 B
BQN
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

IsAsciiNum ('0''9')
IsAlpha (('a''z')('A''Z'))
# based on leah2's function
ReadInt {
𝕨 𝕊 𝕩: '-'=𝕩? -𝕨 𝕊 1𝕩;
𝕨 𝕊 𝕩: (𝕨×+)´-'0'𝕩
}
ReadDec 10ReadInt
SplitOn (( (-1˙)¨ +`(1»<))(¨))
SplitAt (())
_fix {𝕩 𝕊 𝔽 𝕩}
ImportBqnLibs {•Import 𝕩˜"/"˜¯11•SH "printenv""BQNLIBS"}
Xor (¬¬)