LeetCode 33. Search in Rotated Sorted Array in F#
URL
Search in Rotated Sorted Array - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202308/search_in_rotated_sorted_array/main.fsx
let search (nums: int[]) (target: int) : int =
let rec findPivot (nums:...
syohex.hashnode.dev1 min read