top | item 46325283 (no title) mrsmrtss | 2 months ago When using switch expression in C#, they are a lot more similar: public int Fib(int n) => n switch { <= 1 => n, _ => Fib(n - 1) + Fib(n - 2) }; discuss order hn newest No comments yet.
No comments yet.