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 / amitabh dubey
In C# 3.0 with Linq here how you will do
int[] intArray = { 1, 1, 4, 5, 6, 1, 2, 5, 4, 1, 2 };
var groups = from g in intArray
orderby g
group g by g;
StringBuilder stringBuilder = new StringBuilder();
foreach (var g in groups)
stringBuilder.Append(g.Key + "-" + g.Count() + ",");
Console.WriteLine(stringBuilder.ToString());
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is expression tree with example?
What is linq c#?
Can an array be null c#?
What are the types of assembly available
What are partial types in c#?
What is default constructor c#?
What is a hashset c#?
What is a web service in c#?
What is interface used in c#?
What does string format do?
What are the Configuration files in .net?
How can it prevents DLL Hell assembly versioning in .NET?
Why do we use delegates in c#?
What is serialization and deserialization in c# with example?
How is exception handling implemented in c#?