
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Print Duplicates from a List of Integers in C#
To print duplicates from a list of integers, use the ContainsKey.
Below, we have first set the integers.
int[] arr = { 3, 6, 3, 8, 9, 2, 2 };
Then Dictionary collection is used to get the count of duplicate integers.
Let us see the code to get duplicate integers.
Example
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); } } }
Output
3 occurred 2 times 6 occurred 1 times 8 occurred 1 times 9 occurred 1 times 2 occurred 2 times
Advertisements