LeetCode 6. Zigzag Conversion in F#
URL
Zigzag Conversion - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0006/main.fsx
open System
type State =
| Down
| Up
let rec convert'
(cs: char list)
(state: State)
(row: int)
...
syohex.hashnode.dev1 min read