how can i return string by vilating duplicates(inpyt like
asdfsda but output should be 2a2d2sf and 2a,2d,2s,f)
Answer Posted / adityakiran
I suppose this question is intended to test the knowledge on
IEnumerator. The following piece of code may give the
required first part of the output...
string x = "asdfsdaaasasa";
string output = "";
int count = 0;
IEnumerator ie = x.GetEnumerator();
IEnumerator iee = x.GetEnumerator();
while(ie.MoveNext())
{
while(iee.MoveNext())
{
if ((char)ie.Current == (char)iee.Current)
{
count++;
}
}
iee.Reset();
if (!output.Contains(ie.Current.ToString()))
output = output + count + ie.Current;
count = 0;
}
Console.WriteLine(output);
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain About Postback
What is data annotation in c#?
Which language is used for desktop application?
If a method's return type is void, can you use a return keyword in the method?
Is c# code is managed or unmanaged code?
How big is an int16?
Define thread?
Perfect Example Of While And Do-While Loop In C#.Net ?
How many types of interface are there in c#?
What is class method c#?
Explain how to parse a datetime string?
What is an assembly in .net?
How do I do a case-insensitive string comparison?
Can an abstract class inherit from another abstract class c#?
Difference between debug.write and trace.write?