LeetCode 2816. Double a Number Represented as a Linked List in F#
URL
Double a Number Represented as a Linked List - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202405/double_a_number_represented_as_a_linked_list/main.fsx
type MyList =
| Leaf
| Node of int * My...
syohex.hashnode.dev1 min read