LeetCode 1048. Longest String Chain in F#
URL
https://leetcode.com/problems/longest-string-chain/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/1048/main.fsx
open System
let longestStrChain (words: string list) : int =
let rec longestStrChain' (word: s...
syohex.hashnode.dev1 min read