Lorekeeper Polkelt
quicksort [] = [] quicksort (x:xs) = quicksort small ++ (x : quicksort large) where small = [y | y <- xs, y <= x] large = [y | y <- xs, y > x]
quicksort [] = [] quicksort (x:xs) = quicksort small ++ (x : quicksort large) where small = [y | y <- xs, y <= x] large = [y | y <- xs, y > x]
전투의 함성: 내 덱을
비용이 가장 높은 카드부터
가장 낮은 카드 순서로
다시 정렬합니다.
Battlecry: Reorder your deck
from the highest Cost card
to the lowest Cost card.
카드 효과가 너무 획기적이다. 야생갈때까지 얘 때문에 만들어질 덱이 꽤 있을 듯 |
Related Contents