Ok so i've been playing around with F# the last few days and found some tutorials kicking around online (no solutions!) If i had the following list-
let new = [
(1808,"RS");
(1974,"UE");
(1066,"UE");
(3005,"RS");
(2007,"UE");
(2012,"UE");
]
How would I filter this list to show first the number of items in group RS, and secondly UE? I'm thinking List.filter, List.length, not too sure where to go from these two to get specific numbers for each group. Thanks for any help