What is the minimum total weight of the chocolates if there are n chocolates and their weights are given as an array of integers?
a) Summation from i equals 1 to n of weight[i]
b) Minimum of weight[1], weight[2], . . . , weight[n]
c) Maximum of weight[1], weight[2], . . . , weight[n]
d) Average of weight[1], weight[2], . . . , weight[n]