I have learned the basic difference between foldLeft and reduceLeft
foldLeft
reduceLeft
foldLeft:
reduceLeft is just a convenience method. It is equivalent to
list.tail.foldLeft(list.head)(_)