function result = minPerProb(minutes,problems)
% minPerProb  calculate the average number of minutes
% it takes to complete a problem
%
% consumes: minutes   the total time it takes to complete
%                     all of the problems
%           problems  the number of problems completed in
%                     time interval
%
%
% examples:
%       >> minPerProb(6,3)
%       ans =
%            2
%       >> minPerProb(3,6)
%       ans =
%            0.5
%       >>
% Taylor King for CISC106, sect 80, 10/01/2007

result = (minutes/problems);
return;
end
