पूर्णांकों की सूची से डुप्लीकेट प्रिंट करने के लिए, कंटेन्सकी का उपयोग करें।
नीचे, हमने पहले पूर्णांकों को सेट किया है।
int[] arr = {
3,
6,
3,
8,
9,
2,
2
}; फिर डुप्लीकेट पूर्णांकों की गिनती प्राप्त करने के लिए डिक्शनरी संग्रह का उपयोग किया जाता है।
आइए डुप्लिकेट पूर्णांक प्राप्त करने के लिए कोड देखें।
उदाहरण
using System;
using System.Collections.Generic;
namespace Demo {
public class Program {
public static void Main(string[] args) {
int[] arr = {
3,
6,
3,
8,
9,
2,
2
};
var d = new Dictionary < int,int > ();
foreach(var res in arr) {
if (d.ContainsKey(res))
d[res]++;
else
d[res] = 1;
}
foreach(var val in d)
Console.WriteLine("{0} occurred {1} times", val.Key, val.Value);
}
}
} आउटपुट
3 occurred 2 times 6 occurred 1 times 8 occurred 1 times 9 occurred 1 times 2 occurred 2 times