Post History
J, 20 bytes '01'{~#:2^2842 A.i.8 Attempt This Online! Non-tacit program that outputs implicitly in a REPL. Shoutout to Raul (Miller)#5220 in the APL farm discord for thinking of this cool idea...
Answer
#2: Post edited
# [J](https://www.jsoftware.com), 25 bytes- ```
,"2":"0#:2^".&>'41506372'````[Attempt This Online!](https://ato.pxeger.com/run?1=m70wa8GCpaUlaboWe1OTM_J1lIyUrJQMlK2M4pT01OzUTQxNDcyMzY3UIWqgSmFaAA)Non-tacit program that outputs implicitly in a REPL.- ```
,"2":"0#:2^".&>'41506372''41506372' : Configuration of queens".&> : Eval each character to yield list of ints2^ : Raise 2 to each int#: : Creates table of conversions to binary":"0 : Stringify each cell, creates rank 8 8 1 matrix,"2 : Ravel each nested table into a list
- # [J](https://www.jsoftware.com), 20 bytes
- ```
- '01'{~#:2^2842 A.i.8
- ```
- [Attempt This Online!](https://ato.pxeger.com/run?1=m70wa8GCpaUlaboWO1KTM_LVDQzVq-uUrYzijCxMjBQc9TL1LCDSUFUw1QA)
- Non-tacit program that outputs implicitly in a REPL. Shoutout to Raul (Miller)#5220 in the APL farm discord for thinking of this cool idea.
- ```
- 2842 A.i.8 : Anagram 2842 of 0..8 -> 0 4 7 5 2 6 1 3
- 2^ : Raise 2 to each value
- #: : Create matrix of each binary conversion
- '01'{~ : Index '01' using each value of the result
#1: Initial revision
# [J](https://www.jsoftware.com), 25 bytes ``` ,"2":"0#:2^".&>'41506372' ```` [Attempt This Online!](https://ato.pxeger.com/run?1=m70wa8GCpaUlaboWe1OTM_J1lIyUrJQMlK2M4pT01OzUTQxNDcyMzY3UIWqgSmFaAA) Non-tacit program that outputs implicitly in a REPL. ``` ,"2":"0#:2^".&>'41506372' '41506372' : Configuration of queens ".&> : Eval each character to yield list of ints 2^ : Raise 2 to each int #: : Creates table of conversions to binary ":"0 : Stringify each cell, creates rank 8 8 1 matrix ,"2 : Ravel each nested table into a list