|
Ranges: A-H, I-O, P-R, Sa-Sl, Sm-Sz, T-Z.
x←'A' 'I' 'P' 'Sa' 'Sm' 'T'
y←'/' (≠⊆⊢) '/Lochbaum/Foad/Hui/Shiers/Scholes/Smith, R./Smith, F./Chan/Shaw'
With the TAO:
(x⍸y) {⊂⍵}⌸ y
┌──────────┬───────────────┬─────────────────────┬─────────────────────┐
│┌────────┐│┌────┬───┬────┐│┌──────┬───────┬────┐│┌─────────┬─────────┐│
││Lochbaum│││Foad│Hui│Chan│││Shiers│Scholes│Shaw│││Smith, R.│Smith, F.││
│└────────┘│└────┴───┴────┘│└──────┴───────┴────┘│└─────────┴─────────┘│
└──────────┴───────────────┴─────────────────────┴─────────────────────┘
Without the TAO:
((↑m↑¨x)⍸(↑m↑¨y)) {⊂⍵}⌸ y ⊣ m←⌈/≢¨x,y
|