I have the following list
L= [383, 590, 912, 618, 203, 982, 364, 131, 343, 202]
If I use the function min(L) I get 131
Is it possible to know the min value in the list of numbers that exceed 200?
I guess something like min(L, Key>200)
The desired result would be 202