Quicksort + Profiling - by sachincmathew Hello! i'm trying to profile a quicksort code. the code is as follows: qsort [] = [] qsort (x:xs) = qsort (filter (< x) xs) ++ [x] ++ qsort (filter (= x) xs) please help me out! Read the article