f i give input like 1,1,4,5,6,1,2,5,4,1,2, then output
should be like : 1-4, 2-2, 4-2, 5-1, 6-1 which means 1
occurs 4 times, 2 occurs 2 times like so.
Answer Posted / nag
int[] dup = {1,1,4,5,6,1,2,5,4,1,2};
int[] kk = new int[10];
foreach(int k in dup)
{
kk[k] = kk[k] + 1;
}
for (int i = 0; i < 10; i++)
{
if (kk[i] != 0)
Console.Write(i.ToString() + " - " + kk
[i].ToString() + ", ");
}
Console.ReadLine();
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
If I want to override a method one of class A and in class b then how do you declare?
List the differences between method overriding and method overloading?
What does async mean in c#?
Is xml tags are case sensitive?
How do I count the length of a string in c#?
Why are strings immutable in c#?
Can you see a loop recorder?
Explain the use of SN.exe
What is a console file?
What is an icollection in c#?
What are the different types of assembly?
What is the difference between firstordefault and singleordefault?
Are arraylist faster or arrays?
What is the difference between int16 and int32 in c#?
What is 8 bit signed integer?