星めぐり
reduce 1発.
先頭要素がreduceのseedになることを活かして書けた.
tyama_esm2pre.rb
#!/usr/bin/env ruby
#https://gist.github.com/mattsan/38a752dca30423902b0a
T={
'A'=>{'R'=>'H','W'=>'I'},
'B'=>{'R'=>'D','W'=>'G'},
'C'=>{'R'=>'J','W'=>'A'},
'D'=>{'R'=>'F','W'=>'I'},
'E'=>{'R'=>'B','W'=>'C'},
'F'=>{'R'=>'H','W'=>'A'},
'G'=>{'R'=>'D','W'=>'E'},
'H'=>{'R'=>'J','W'=>'C'},
'I'=>{'R'=>'F','W'=>'G'},
'J'=>{'R'=>'B','W'=>'E'},
}
if __FILE__==$0
while gets
puts $_.chomp.chars.reduce{|s,e|s<<T[s[-1]][e]}
STDOUT.flush
end
end
Author And Source
この問題について(星めぐり), 我々は、より多くの情報をここで見つけました https://qiita.com/cielavenir/items/7eed0993eae91267d082著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .