Re: finding positions of elements in a list
- To: mathgroup at smc.vnet.net
 - Subject: [mg86781] Re: finding positions of elements in a list
 - From: mante <claude.mante at univmed.fr>
 - Date: Thu, 20 Mar 2008 05:50:01 -0500 (EST)
 
That's simple with slots :
mylist = {{20, 109}, {20, 110}, {20, 111}, {21, 105}, {21, 106}, {21,
    107}};
Select[mylist, (#[[2]] > 106) &]
Claude