You are viewing a single comment's thread. Return to all comments →
C#
var cc = ar.GroupBy(x => x) .Select(g => new { Count = g.Count(), Number = g.Key }) .ToList(); var pairs = cc.Where(x => x.Count >= 2).Sum(x => x.Count / 2); return pairs;
Seems like cookies are disabled on this browser, please enable them to open this website
Sales by Match
You are viewing a single comment's thread. Return to all comments →
C#