LeetCode 1652. Defuse the Bomb in F#
URL
Defuse the Bomb - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202411/defuse_the_bomb/main.fsx
let decrypt (code: int[]) (k: int) : int[] =
let len = Array.length code
if k = 0 then
A...
syohex.hashnode.dev1 min read