Anagrams: Difference between revisions

→‎{{header|BQN}}: Remove "works in", as it runs in all implementations
(Add BQN)
(→‎{{header|BQN}}: Remove "works in", as it runs in all implementations)
Line 812:
 
=={{header|BQN}}==
 
Works in: [[CBQN]]
 
<lang bqn>words ← •FLines "unixdict.txt"
Line 824 ⟶ 822:
⟨ "evil" "levi" "live" "veil" "vile" ⟩</lang>
 
Assumes that <code>unixdict.txt</code> is in the same folder. The [[mlochbaum/BQN|JS implementation]] must be run in Node.js to have access to the filesystem.
 
<code>(⊐∧¨)⊸⊔</code> is an expression which sorts all words and groups based on them.
99

edits