다음 함수를 사용하여 주어진 목록의 모든 숫자를 현재 위치까지 합산해야합니다. 예 subtotal [1, 2, 3, 4] = [1, 3, 6, 10]
를 들어, 1 = 1, 1 + = 3 2 + 2 + 3 = 6 1 1 + 2 + 3 + 4 여기 = 10예상 유형`[a] '과 실제 유형`a'를 일치시킬 수 없습니다.
내 코드 왜냐하면 :
subtotal :: Num a => [a] -> [a]
subtotal [] = []
subtotal xs = [y | n <- [1..length xs], y <- sum(take n xs)]
문제가 발생했습니다 :
cw.hs:3:46: error:
* Couldn't match expected type `[a]' with actual type `a'
`a' is a rigid type variable bound by
the type signature for:
subtotal :: forall a. Num a => [a] -> [a]
at cw.hs:1:1-31
* In the expression: sum (take n xs)
In a stmt of a list comprehension: y <- sum (take n xs)
In the expression:
[y | n <- [1 .. length xs], y <- sum (take n xs)]
* Relevant bindings include
xs :: [a] (bound at cw.hs:3:10)
subtotal :: [a] -> [a] (bound at cw.hs:2:1)
|
3 | subtotal xs = [y | n <- [1..length xs], y <- sum(take n xs)]
| ^^
어떻게 해결할 수 있습니까?
'y <- [sum (take n xs)]'와 같이'sum (take n xs)'주위에 괄호를 넣으면 황금이됩니다. [this] (https://wiki.haskell.org/Keywords#.3C-), [this] (https://wiki.haskell.org/Keywords#.2C) 및 [this] (https : /wiki.haskell.org/Keywords#.7C). –