我試圖構建高於100變量在範圍 - 列表comprehesion
resultSum :: [(Integer)] -> [Integer]
resultSum (x:xs) = [ sumT | let sumT = fst x + snd x in sumT + trd x, sumT > 100 ]
trd (_,_,x) = x
我接收到該消息時返回一個列表與元組元素之和的函數:
`SUMT」我想,當我使用let
我指定誰是我的變量
不
PS:我需要用戶
let
和列表comprehesion
那你想幹什麼? 3元組列表中所有3元組的總和大於100? – phynfo