LeetCode 61. Rotate List in F#
URL
https://leetcode.com/problems/rotate-list/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0061/main.fsx
type LinkedList =
| ListEnd
| ListNode of int * LinkedList
static member length(lst: LinkedList...
syohex.hashnode.dev2 min read