LeetCode 1318. Minimum Flips to Make a OR b Equal to c in F#
URL
Minimum Flips to Make a OR b Equal to c - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/1318/main.fsx
let minFlips (a: int) (b: int) (c: int) =
let rec minFlips' i mask a b c acc =
if i = 0 ...
syohex.hashnode.dev1 min read