8 Oct
2011
8 Oct
'11
11:56 a.m.
On Sat, Oct 8, 2011 at 12:51 AM, kolli kolli <nammukolli04@gmail.com> wrote:
i want the o/p to be ["ala", "jera","zero", "0020", "0030","0022"]
import Data.Char import Data.List sortKolli xs = let (ns,ys) = partition (all isNumber) xs in sort ys ++ ns -- Felipe.