MathGroup Archive 2007

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Deleting duplicates from a list

  • To: mathgroup at smc.vnet.net
  • Subject: [mg76035] Re: Deleting duplicates from a list
  • From: dimitris <dimmechan at yahoo.com>
  • Date: Tue, 15 May 2007 04:51:33 -0400 (EDT)
  • References: <f292sh$m3p$1@smc.vnet.net>

FrontEndExecute[{HelpBrowserLookup["RefGuide", "Union"]}]

FrontEndExecute[{HelpBrowserLookup["RefGuide", "Reap"]}]


Also

In[11]:=
unUn[lis_List] := lis //. {a___, b_, c___, d_, e___} :> {a, b, c,
e} /; b == d

In[14]:=
lst = Table[Random[Integer, {1, 10}], {30}]
Out[14]=
{3, 7, 8, 7, 1, 8, 9, 5, 5, 3, 2, 5, 3, 4, 3, 1, 10, 6, 2, 8, 6, 7, 6,
4, 1, 1, 7, 9, 9, 3}

In[15]:=
unUn[lst]
Out[15]=
{3, 7, 8, 1, 9, 5, 2, 4, 10, 6}

Dimitris

=CF/=C7 Raul Martinez =DD=E3=F1=E1=F8=E5:
> Hi all,
>
> I have a list, e.g., {8, 8, 11, 11, 19}. I want to eliminate all
> duplicates so the list becomes {8, 11, 19}. Can anyone suggest a
> command that will do this?
>
> TIA,
>
> Raul Martinez



  • Prev by Date: JLink and double wrapper classes.
  • Next by Date: Re: v. 6, third argument to rectangle
  • Previous by thread: Re: Deleting duplicates from a list
  • Next by thread: Re: Deleting duplicates from a list