Re: rule based program for "Deleting repeated members of a list."
- To: mathgroup at smc.vnet.net
- Subject: [mg81992] Re: rule based program for "Deleting repeated members of a list."
- From: Peter Pein <petsie at dordos.net>
- Date: Mon, 8 Oct 2007 02:07:24 -0400 (EDT)
- References: <fe7j44$qga$1@smc.vnet.net>
Sorry, I read the news offline but forgot to load sunday's postings. The fastest _rule-based_ solution I got is (with s being the large list from my last posting): RepeatRemover = (Partition[#1, 2, 1, {1, 1}, "foo"] /. {x_, x_} -> Sequence[])[[All,1]] & ; AbsoluteTiming[s2 = RepeatRemover[s]; ][[1]] ---> 0.015625 Second which is 4750 times faster than the approach using ReplaceRepeated. Peter mumat schrieb: > Hi, > > I have a list s={a,b,c,c,d,e,e,f,g,g,g,h,a,b}; > > I need to write a program so that it reads the list and ignors > repeated elements; so it outputs the following: > > RepeatRemover[s]={a,b,c,d,e,f,g,h,a,b}; > > I am looking for a rule-based program to do this! > > Any help would be greatly appreciated. > > C.S. > >