LeetCode 859. Buddy Strings in F#
URL
Buddy Strings - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0859/main.fsx
let buddyStrings (s: string) (goal: string) : bool =
if s.Length <> goal.Length then
false
else
let di...
syohex.hashnode.dev1 min read