fork download
  1. USING: sequences math kernel ascii splitting io prettyprint ;
  2. IN: splurthian
  3.  
  4. : normalize ( str -- str str ) >lower " ," split harvest
  5. [ first ] keep second ;
  6.  
  7. : symbol-loc ( str str -- seq seq ) 2dup first swap indices
  8. -rot second swap indices ;
  9.  
  10. : valid-order ( seq seq -- ? ) [ [ empty? ] either? ] 2keep
  11. rot [ 2drop f ] [ [ infimum ] dip supremum < ] if ;
  12.  
  13. lines [ normalize symbol-loc valid-order . ] each
Success #stdin #stdout 0.08s 157824KB
stdin
Spenglerium, Ee
Zeddemorium, Zr
Venkmine, Kn
Stantzon, Zt
Melintzum, Nn
Tullium, Ty
stdout
t
t
t
f
f
f