ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories >> Software >> Microsoft-Related >> C-Sharp
 
 
 
Question
how can i return string by vilating duplicates(inpyt like 
asdfsda but output should be 2a2d2sf and 2a,2d,2s,f)
 Question Submitted By :: Chandra
I also faced this Question!!     Rank Answer Posted By  
 
Answer
we can modify the previous answer to make it efficient...
check it..

string x = "asdfsdaaasasa";
            string output = "";
            int count = 0;
            IEnumerator ie = x.GetEnumerator();
            IEnumerator iee = x.GetEnumerator();
            while(ie.MoveNext())
            {
             if (!output.Contains(ie.Current.ToString()))
               {
                while(iee.MoveNext())
                {
                    if ((char)ie.Current == (char)iee.Current)
                    {
                        count++;
                    }
                }
                iee.Reset();                
                output = output + count + ie.Current;
                count = 0;
               }
            }
            Console.WriteLine(output);
 
0
Hari
 
View All Answers
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com