LeetCode 2095. Delete the Middle Node of a Linked List in F#
URL
https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/2095/main.fsx
type MyList =
| Leaf
| Node of int * MyList
let deleteMiddle (head: MyL...
syohex.hashnode.dev1 min read