Re: Sorting nested list
- To: mathgroup at smc.vnet.net
- Subject: [mg57443] Re: Sorting nested list
- From: "meznaric" <meznaric at gmail.com>
- Date: Sat, 28 May 2005 05:39:06 -0400 (EDT)
- References: <d6us0f$ivm$1@smc.vnet.net><d76o0i$7mu$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Plizak: Simply apply Sort: Sort[{{a,{2,4,1}}, {c, {1,2}},{b,{3.2,-2}}}] will give you the sorted list you are looking for: {{a, {2, 4, 1}}, {b, {3.2, -2}}, {c, {1, 2}}} Sebastjan