Given two input files File1(person, project, value/time), file2(project, multFactor/efficiency), produce OutputFile(person, total) – apply multiFactor to the value then sum across to get totals by person.
Given two input files File1(person, project, value/time), file2(project, multFactor/efficiency) , produce OutputFile(person, total) –
Share
read the input into a suitable datastructure (probably a dictionary indexed by the project), do the calculations, output the result.