vote up 12 vote down star
5

The challenge: The shortest code, by character count, that detects and removes duplicate characters in a String. Removal includes ALL instances of the duplicated character (so if you find 3 n's, all three have to go), and original character order needs to be preserved.

Example Input:
nbHHkRvrXbvkn


Example Output:
RrX

(This is based on my other question where I needed the fastest way to do this in C#, but I think it makes good Code Golf across languages.)

flag
1  
There's definitely going to be a Perl solution here under 10/15 chars. – Noldorin Aug 28 at 0:16
2  
where's the 4 character J solution? – Jason Aug 28 at 0:18
3  
Should solutions be a complete program that accepts input from the user, or just a function/method that performs the given task? – TokenMacGuy Aug 28 at 3:04
2  
If it was just a function, it could be shorter in most cases. +1 for full programs. – nilamo Aug 28 at 4:08
It should be a program, but if someone posts the function by itself it's fine too as it still adds interesting value. – Alex Aug 31 at 18:16

26 Answers

vote up 3 vote down

another APL solution

As a dynamic function (18 charachters)

{(1+=/¨(ω∘∊¨ω))/ω}

line assuming that input is in variable x (16 characters):

(1+=/¨(x∘∊¨x))/x
link|flag
vote up 1 vote down

Lua

98 char function, 115 char full program

f was written in the most readable format, and g aimed to reproduce f exactly but in a more terse manner.

Lowercase f and g functions are "verbose," and uppercase F and G are the "compressed" versions.

J is identical to G, but it is declared to show the necessary character count for a full program.

removedups.lua:

f = function(s)
    h=s:sub(1,1) -- head of string
    r=s:sub(2)   -- rest of string
    if r:find(h) then -- first character is repeated
        return f(s:gsub(h, '')) -- f(rest without any instance of h)
    elseif r > "" then -- there is something left in the rest of the string
        return h .. f(r) -- concatenate head with f(rest)
    else return h -- rest is empty string, so just return value left in head
    end
end

F=function(s)h=s:sub(1,1)r=s:sub(2)if r:find(h)then return f(s:gsub(h,''))elseif r>""then return h ..f(r)else return h end end
--       1         2         3         4         5         6         7         8         9        10        11        12
--3456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456
-- 126 chars, compressed

g = function(s)
    h=s:sub(1,1)
    r=s:sub(2)
    return (r:find(h) and g(s:gsub(h, '')) or (r > "" and h .. g(r)) or h)
end

G=function(s)h=s:sub(1,1)r=s:sub(2)return r:find(h)and g(s:gsub(h,''))or(r>""and h ..g(r))or h end
--       1         2         3         4         5         6         7         8         9        10        11     
--345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678
-- 98 chars, compressed

-- code-golf unit tests :)
assert(f("nbHHkRvrXbvkn")=="RrX")
assert(F("nbHHkRvrXbvkn")=="RrX")
assert(g("nbHHkRvrXbvkn")=="RrX")
assert(G("nbHHkRvrXbvkn")=="RrX")

J=function(s)h=s:sub(1,1)r=s:sub(2)return r:find(h)and g(s:gsub(h,''))or(r>""and h ..g(r))or h end print(J(arg[1]))
--       1         2         3         4         5         6         7         8         9        10        11     
--34567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345
-- 115 chars, full program

Output:

$ lua removedups.lua nbHHkRvrXbvkn
RrX
link|flag
Lovely, with the ruler and everything. +1 – Alex Sep 16 at 1:49
vote up 1 vote down

PHP

118 characters actual code (plus 6 characters for the PHP block tag):

<?php
$s=trim(fgets(STDIN));$x='';while(strlen($s)){$t=str_replace($s[0],'',substr($s,1),$c);$x.=$c?'':$s[0];$s=$t;}echo$x;
link|flag
vote up 6 vote down

LabVIEW 7.1

ONE character and that is the blue constant '1' in the block diagram. I swear, the input was copy and paste ;-)

link|flag
1  
LOL, I love it. – AMissico Sep 18 at 9:44
vote up 3 vote down

sed/Java

A sed version with 30 characters, or 21 characters if you don't include the invocation of the command:

sed -r ':_;s/(.)(.*)\1/\2/;t_'

A java version using the same idea (should all be written in one line) which is 157 characters:

class T{public static void main(String[]a){String s=a[0];int l;
do{l=s.length();s=s.replaceAll("(.)(.*)\\1","$2");}while(s.length()<l);
System.out.printf(s);}}
link|flag
vote up 1 vote down

Euphoria

165 characters from a pretty verbose language.

object c=getc(0),r={},b=r
while c>0 do
if find(c,r)then b&=c end if
r&=c
c=getc(0)
end while
for i=1 to length(r)do
if find(r[i],b)=0 then puts(1,r[i])end if
end for
link|flag
vote up 4 vote down

Haskell

(just knocking a few characters off Mark Rushakoff's effort, I'd rather it was posted as a comment on his)

h y=[x|x<-y,[_]<-[filter(==x)y]]

which is better Haskell idiom but maybe harder to follow for non-Haskellers than this:

h y=[z|x<-y,[z]<-[filter(==x)y]]

Edit to add an explanation for hiena and others:

I'll assume you understand Mark's version, so I'll just cover the change. Mark's expression:

(<2).length $ filter (==x) y

filters y to get the list of elements that == x, finds the length of that list and makes sure it's less than two. (in fact it must be length one, but ==1 is longer than <2 ) My version:

[z] <- [filter(==x)y]

does the same filter, then puts the resulting list into a list as the only element. Now the arrow (meant to look like set inclusion!) says "for every element of the RHS list in turn, call that element [z]". [z] is the list containing the single element z, so the element "filter(==x)y" can only be called "[z]" if it contains exactly one element. Otherwise it gets discarded and is never used as a value of z. So the z's (which are returned on the left of the | in the list comprehension) are exactly the x's that make the filter return a list of length one.

That was my second version, my first version returns x instead of z - because they're the same anyway - and renames z to _ which is the Haskell symbol for "this value isn't going to be used so I'm not going to complicate my code by giving it a name".

link|flag
could you explain your solution? I'm having trouble understanding :S – hiena Aug 31 at 14:00
vote up 8 vote down

APL

23 characters:

(((1+ρx)-(ϕx)ιx)=xιx)/x

I'm an APL newbie (learned it yesterday), so be kind -- this is certainly not the most efficient way to do it. I'm ashamed I didn't beat Perl by very much.

Then again, maybe it says something when the most natural way for a newbie to solve this problem in APL was still more concise than any other solution in any language so far.

link|flag
vote up 2 vote down

C

(1st version: 112 characters; 2nd version: 107 characters)

k[256],o[100000],p,c;main(){while((c=getchar())!=-1)++k[o[p++]=c];for(c=0;c<p;c++)if(k[o[c]]==1)putchar(o[c]);}

That's

/* #include <stdio.h> */
/* int */ k[256], o[100000], p, c;
/* int */ main(/* void */) {
  while((c=getchar()) != -1/*EOF*/) {
    ++k[o[p++] = /*(unsigned char)*/c];
  }
  for(c=0; c<p; c++) {
    if(k[o[c]] == 1) {
      putchar(o[c]);
    }
  }
  /* return 0; */
}

Because getchar() returns int and putchar accepts int, the #include can 'safely' be removed. Without the include, EOF is not defined, so I used -1 instead (and gained a char). This program only works as intended for inputs with less than 100000 characters!

Version 2, with thanks to strager 107 characters

#ifdef NICE_LAYOUT
#include <stdio.h>

/* global variables are initialized to 0 */
int char_count[256];                          /* k in the other layout */
int char_order[999999];                       /* o ... */
int char_index;                               /* p  */

int main(int ch_n_loop, char **dummy)         /* c  */
                                              /* variable with 2 uses */
{

  (void)dummy; /* make warning about unused variable go away */

  while ((ch_n_loop = getchar()) >= 0) /* EOF is, by definition, negative */
  {
    ++char_count[ ( char_order[char_index++] = ch_n_loop ) ];
    /* assignment, and increment, inside the array index */
  }
  /* reuse ch_n_loop */
  for (ch_n_loop = 0; ch_n_loop < char_index; ch_n_loop++) {
    (char_count[char_order[ch_n_loop]] - 1) ? 0 : putchar(char_order[ch_n_loop]);
  }
  return 0;
}
#else
k[256],o[999999],p;main(c){while((c=getchar())>=0)++k[o[p++]=c];for(c=0;c<p;c++)k[o[c]]-1?0:putchar(o[c]);}
#endif
link|flag
EOF is not defined to be -1. – strager Aug 29 at 20:29
I also don't like limiting the input length... – strager Aug 29 at 20:31
Some suggestions: You can save a byte by putting c as parameters to main. You can also use k[o[c]]-1?0:putchar(o[c]); in your second loop to save a few bytes as well. You can maybe save bytes (in source size and memory) using 9's instead of 0's for your big array. – strager Aug 29 at 20:35
Now we are tied for 107. =] – strager Aug 29 at 21:16
vote up 3 vote down

PHP (136 characters)

<?PHP
function q($x){return $x<2;}echo implode(array_keys(array_filter(
array_count_values(str_split(stream_get_contents(STDIN))),'q')));

On one line, it's 5+1+65+65 = 136 bytes. Using PHP 5.3 you could save a few bytes making the function anonymous, but I can't test that now. Perhaps something like:

<?PHP
echo implode(array_keys(array_filter(array_count_values(str_split(
stream_get_contents(STDIN))),function($x){return $x<2;})));

That's 5+1+66+59 = 131 bytes.

link|flag
vote up 4 vote down

PowerShell

61 characters. Where $s="nbHHkRvrXbvkn" and $a is the result.

$h=@{}
($c=[char[]]$s)|%{$h[$_]++}
$c|%{if($h[$_]-eq1){$a+=$_}}

Fully functioning parameterized script:

param($s)
$h=@{}
($c=[char[]]$s)|%{$h[$_]++}
$c|%{if($h[$_]-eq1){$a+=$_}}
$a
link|flag
vote up 7 vote down

Ruby

My Ruby solution:

  puts ((i=gets.split(''))-i.reject{|c|i.to_s.count(c)<2}).join
+-------------------------------------------------------------------------+
||    |    |    |    |    |    |    |    |    |    |    |    |    |    |  |
|0         10        20        30        40        50        60        70 |
|                                                                         |
+-------------------------------------------------------------------------+

61 chars, the ruler says. (Gives me an idea for another code golf...)

link|flag
With the newer version of ruby, you can drop the '.to_s'. I actually like yours better, for a few different reasons. – nilamo Aug 28 at 8:32
9  
like the ruler :) – Alex Aug 31 at 2:34
vote up 6 vote down

C#

65 Characters:

new String(h.Where(x=>h.IndexOf(x)==h.LastIndexOf(x)).ToArray());

67 Characters with reassignment:

h=new String(h.Where(x=>h.IndexOf(x)==h.LastIndexOf(x)).ToArray());
link|flag
vote up 3 vote down

C

Full program in C, 141 bytes (counting newlines).

#include<stdio.h>
c,n[256],o,i=1;main(){for(;c-EOF;c=getchar())c-EOF?n[c]=n[c]?-1:o++:0;for(;i<o;i++)for(c=0;c<256;c++)n[c]-i?0:putchar(c);}
link|flag
Can you declare variables without types in ANSI C anymore? – Chris Lutz Aug 28 at 6:16
Nevermind. Apparently you can, though GCC gives a warning even with all warnings off about this. – Chris Lutz Aug 28 at 6:17
Very nice! I'll have to optimize my own method now to beat yours. =] – strager Aug 28 at 20:40
I managed to get down to 136 bytes myself, and it happened to use a method similar to yours. (It may be identical, even...) – strager Aug 28 at 21:01
vote up 2 vote down

Scala

54 chars for the method body only, 66 with (statically typed) method declaration:

def s(s:String)=(""/:s)((a,b)=>if(s.filter(c=>c==b).size>1)a else a+b)
link|flag
vote up 3 vote down

VB.NET / LINQ

96 characters for complete working statement

Dim p=New String((From c In"nbHHkRvrXbvkn"Group c By c Into i=Count Where i=1 Select c).ToArray)

Complete working statement, with original string and the VB Specific "Pretty listing (reformatting of code" turned off, at 96 characters, non-working statement without original string at 84 characters.

(Please make sure your code works before answering. Thank you.)

link|flag
vote up 3 vote down

Ruby

63 chars.

puts (t=gets.split(//)).map{|i|t.count(i)>1?nil:i}.compact.join
link|flag
unfortunately you can't call count on an array, you must call it on a string (I made the same mistake >.<) – jeremy Ruten Aug 28 at 7:24
In at least 1.8.7, Array.count: ruby-doc.org/core-1.8.7/classes/… – nilamo Aug 28 at 7:36
aah, guess I should upgrade. :P – jeremy Ruten Aug 28 at 7:39
vote up 3 vote down

TCL

123 chars. It might be possible to get it shorter, but this is good enough for me.

proc h {i {r {}}} {foreach c [split $i {}] {if {[llength [split $i $c]]==2} {set r $r$c}}
return $r}
puts [h [gets stdin]]
link|flag
vote up 9 vote down

Haskell

There's surely shorter ways to do this in Haskell, but:

Prelude Data.List> let h y=[x|x<-y,(<2).length$filter(==x)y]
Prelude Data.List> h "nbHHkRvrXbvkn"
"RrX"

Ignoring the let, since it's only required for function declarations in GHCi, we have h y=[x|x<-y,(<2).length$filter(==x)y], which is 37 characters (this ties the current "core" Python of "".join(c for c in s if s.count(c)<2), and it's virtually the same code anyway).

If you want to make a whole program out of it,

h y=[x|x<-y,(<2).length$filter(==x)y]
main=interact h

$ echo "nbHHkRvrXbvkn" | runghc tmp.hs
RrX

$ wc -c tmp.hs
54 tmp.hs

Or we can knock off one character this way:

main=interact(\y->[x|x<-y,(<2).length$filter(==x)y])

$ echo "nbHHkRvrXbvkn" | runghc tmp2.hs
RrX

$ wc -c tmp2.hs
53 tmp2.hs

It operates on all of stdin, not line-by-line, but that seems acceptable IMO.

link|flag
vote up 3 vote down

VB.NET

For Each c In s : s = IIf(s.LastIndexOf(c) <> s.IndexOf(c), s.Replace(CStr(c), Nothing), s) : Next

Granted, VB is not the optimal language to try to save characters, but the line comes out to 98 characters.

link|flag
I'm no VB expert, but it looks like there's a bunch of Whitespace in your answer, Does vb require all that whitespace? – TokenMacGuy Aug 28 at 3:04
If it is anything like VB6 then it forces the whitespace on you. – graham.reeds Aug 28 at 8:07
Yeah, the IDE adds the spaces for you. – BP Aug 28 at 15:58
No, most whitespaces are absolutely useless here. Being an advanced IDE, VS inserts them for you. But in a code golf they’re shouldn’t count. – Konrad Rudolph Aug 31 at 15:50
1  
Yes, it will work without the spaces even if VS automatically inserts them. And using If instead of IIf makes it better. You can also skip converting c to string. And why not replace with "" instead of Nothing... All of these will result in this 75 char code: For Each c In s:s=If(s.LastIndexOf(c)<>s.IndexOf(c),s.Replace(c,""),s):Next – awe Sep 1 at 11:55
show 2 more comments
vote up 3 vote down

Javascript 1.8

s.split('').filter(function (o,i,a) a.filter(function(p) o===p).length <2 ).join('');

or alternately- similar to the python example:

[s[c] for (c in s) if (s.split("").filter(function(p) s[c]===p).length <2)].join('');
link|flag
vote up 2 vote down

I couldn't find the original answer, but in the spirit of a Jon Skeet answer:

Strip:

RSP

The meaning of this program is: Read a string from standard input (R), Strip all duplicate characters (S), Print the result to stdout (P).

link|flag
6  
Skeet would have done it in one character. :-P – Joel Potter Aug 28 at 0:47
2  
Martin did do it in one character - but he then took on the harder challenge of writing it as a full program instead of just a function. – Chris Lutz Aug 28 at 6:23
2  
-1 for not being Jon Skeet and I wish I could add another -1 for annoying fanboyism. – Eric Aug 28 at 8:03
2  
How about -1 for having fun while you're at it? – Chris Lutz Aug 28 at 8:05
1  
Ha ha, yes, let's reuse Jon Skeet's jokes. It was amusing when he did it, but now it is just tired. – Eric Aug 28 at 8:13
show 1 more comment
vote up 9 vote down

C89 (106 characters)

This one uses a completely different method than my original answer. Interestingly, after writing it and then looking at another answer, I saw the methods were very similar. Credits to caf for coming up with this method before me.

b[256];l;x;main(c){while((c=getchar())>=0)b[c]=b[c]?1:--l;
for(;x-->l;)for(c=256;c;)b[--c]-x?0:putchar(c);}

On one line, it's 58+48 = 106 bytes.

C89 (173 characters)

This was my original answer. As said in the comments, it doesn't work too well...

#include<stdio.h>
main(l,s){char*b,*d;for(b=l=s=0;l==s;s+=fread(b+s,1,9,stdin))b=realloc(b,l+=9)
;d=b;for(l=0;l<s;++d)if(!memchr(b,*d,l)&!memchr(d+1,*d,s-l++-1))putchar(*d);}

On two lines, it's 17+1+78+77 = 173 bytes.

link|flag
1  
+1 for using one of the more difficult languages – Mark Aug 28 at 2:42
1  
You're calling realloc and memchr without compatible declarations in scope. – caf Aug 28 at 6:06
What language? – Svish Aug 28 at 7:25
@Svish - C. Perhaps you should get out more. I don't know Ruby or C# but I can more or less recognize them when I see them. – Chris Lutz Aug 28 at 7:46
@caf: Not true. Calling realloc() on NULL (b is initialized from 0) is fine, and acts like malloc(). – unwind Aug 28 at 8:05
show 7 more comments
vote up 15 vote down

Perl

21 characters of perl, 31 to invoke, 36 total keystrokes (counting shift and final return):

perl -pe's/$1//gwhile/(.).*\1/'
link|flag
It's customary to post the language and the character count. – Chris Lutz Aug 28 at 6:15
(Disclaimer: I'm no Perl guru.) I tested with v5.8.8 and it seems you can remove the space after -pe to save a character. – strager Aug 28 at 21:04
There are a few characters we can remove. You are correct about that space. Also, the space after the while should be superfluous and the semicolon is also superfluous since it's only one line. However, 35 characters is in no danger of being beaten any time soon. – Chris Lutz Aug 29 at 8:52
The apl solution of 23 characters requires that the excess spaces be removed. – William Pursell Aug 31 at 13:41
1  
Damn, I didn't know Perl would let you get away with s///gwhile. That's kind of ridiculous. – Chris Lutz Aug 31 at 21:12
vote up 10 vote down

Python:

s=raw_input()
print filter(lambda c:s.count(c)<2,s)

This is a complete working program, reading from and writing to the console. The one-liner version can be directly used from the command line

python -c 's=raw_input();print filter(lambda c:s.count(c)<2,s)'
link|flag
That doesn't seem to work in my version of Python unless i add square brackets around the array constructs - join([...]). – lsc Aug 28 at 9:13
That's a generator expression and was added in Python 2.2. I think it's reasonable to assume everyone who actually uses Python is on that version or higher. – Triptych Aug 28 at 11:27
I'm using Python 2.3.4 (RHEL4), and it moans about the above expression - "SyntaxError: invalid syntax". Only in Python 2.4 and above perhaps? – lsc Aug 28 at 12:33
Generator expressions were added in 2.4. Anyway the new version is shorter and doesn't use them. – Steve Losh Aug 28 at 14:24
vote up 5 vote down

C#

new string(input.GroupBy(c => c).Where(g => g.Count() == 1).ToArray());

71 characters

link|flag
Found out it could actually be even a few chars less with your method, changing cs to c and removing whitespace. Then it becomes 66 chars. Though I've found a method one char less. – Dykam Aug 28 at 6:58
"input" is string, so it doesn't have GroupBy method. You should add call to "ToCharArray" method. – Kamarey Aug 28 at 10:02
2  
System.String implements IEnumerable<char>, so it has the GroupBy method. The IDE makes an exception for the extension methods on string and doesn't show them, but they compile and run just fine. – Bryan Watts Aug 28 at 14:05
Didn't know that, thanks – Kamarey Aug 30 at 5:59
Bryan, that's only the case for Visual Studio, as I did see them appear in #D. – Dykam Aug 30 at 17:02
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.