- otsune
- kanimaster
- jt_noSke
- habuakihiro
- mohno
- munyuu
- ChimeraJpn
- DoukiHousou Nazo_Gen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Main where | |
import Data.List((!!)) | |
f :: String -> Int -> String | |
f cs = reverse . map (cs !!) . h | |
where n = length cs | |
h 0 = [] | |
h acc = let m = (acc - 1) `mod` 26 | |
in m: h ((acc - m) `div` n) |
- otsune
- kanimaster
- jt_noSke
- habuakihiro
- mohno
- munyuu
- ChimeraJpn
- DoukiHousou Nazo_Gen
- otsune
- kanimaster
- jt_noSke
- habuakihiro
- mohno
- munyuu
- ChimeraJpn
- DoukiHousou Nazo_Gen