LeetCode 2220. Minimum Bit Flips to Convert Number in F#
URL
https://leetcode.com/problems/minimum-bit-flips-to-convert-number/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/2220/main.fsx
let minBitFlips (start: int) (goal: int) : int =
(start ^^^ goal)
|> uint32
...
syohex.hashnode.dev1 min read