You are viewing a single comment's thread. Return to all comments →
public static List<int> matchingStrings(List<string> strings, List<string> queries) { return queries.GroupJoin(strings, q => q, s => s, (q, ss) => ss.Count()).ToList(); }
Seems like cookies are disabled on this browser, please enable them to open this website
Sparse Arrays
You are viewing a single comment's thread. Return to all comments →