Re-write 'map intToDigit' with a fold…
问题 So this one seems like it should be super-simple... but I'm not sure where to stick the 'fold' in (obviously you could fold either way)... It says "write a function ( intToString :: [Int] -> [Char] ) using a fold, that mimics this map: map intToDigit [5,2,8,3,4] == "52834" And then says, "For the conversion, use intToDigit :: Int -> Char from Data.Char ." I'm not entirely sure I get the point... but yet it doesn't seem like it should be that hard -- you're just reading in the list (folding it