You are viewing a single comment's thread. Return to all comments →
c#
int qCount = queries.Count; int[] count = new int[qCount]; for (int i = 0; i < stringList.Count; i++) { for (int j = 0; j < queries.Count; j++) { if (queries[j] == stringList[i]) { count[j]++; } } }
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 →
c#