Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,912 questions

51,844 answers

573 users

How to find non-repeated characters in a string with C#

1 Answer

0 votes
using System;

class Program
{
   static string getNonRepeatedCharacters(string s) { 
        int[] count = new int[256]; 
  
        int i; 
        for (i = 0; i < s.Length; i++) 
            if (s[i] != ' ') 
                count[(int)s[i]]++; 
          
        int len = i; 
  
        string nrc = "";
        for (i = 0; i < len; i++) 
            if (count[(int)s[i]] == 1) 
               nrc += s[i];
                 
        return nrc;
    } 
    static void Main()
    {
        string s = "c sharp php c++"; 
          
        string nrc = getNonRepeatedCharacters(s); 
        Console.WriteLine(nrc);
    }
}


/*
run:
  
sar
  
*/

 



answered Feb 9, 2019 by avibootz

Related questions

3 answers 352 views
1 answer 257 views
2 answers 222 views
2 answers 209 views
2 answers 196 views
1 answer 110 views
...