1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

山折り谷折り

Last updated at Posted at 2014-01-26

@mtsmfm氏の解答 http://qiita.com/mtsmfm/items/9c567d40b315046cc8e6 のもろパクリとなってしまいました、またも敗北、最近非常に調子が悪いです。

hena18pre.rb
# !/usr/bin/env ruby
# http://qiita.com/Nabetani/items/373105e7fafd12f5e9fd
# http://nabetani.sakura.ne.jp/hena/ord18mafovafo/
T={'L'=>'RVF','J'=>'FVR','Z'=>'FmRVF','U'=>'RVFVR','S'=>'FVRmF'}
STDOUT.sync=true
while gets
	puts $_.chomp.chars.reduce('F'){|s,e|
		s.chars.map{|c|c=='F' ? T[e] : c=='R' ? T[e].tr('FRmV','RFVm').reverse : c}*''
	}.tr('FR','')
end
1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?