Lorekeeper Polkelt

Battlecry: Reorder your deck
from the highest Cost card
to the lowest Cost card.

Описание

quicksort [] = [] quicksort (x:xs) = quicksort small ++ (x : quicksort large) where small = [y | y <- xs, y <= x] large = [y | y <- xs, y > x]