Presented By:
Christopher Toste
Map(list(Key, Value)):
for each K in Value:
EmitIntermediate(list(K, "1"));
Reduce(list(Key, Iterator)):
int result = 0;
for each K in Iterator:
result += ParseInt(K);
Emit(result);
