LeetCode 150. Evaluate Reverse Polish Notation in F#
URL
Evaluate Reverse Polish Notation - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202401/evaluate_reverse_polish_notation/main.fsx
let evalRPN (tokens: string list) : int =
let rec evalRPN' tokens s...
syohex.hashnode.dev1 min read