Finds a pair of numbers in a sequence that sum to a target value. def pairValues(sequence, target_sum): Finds a pair of numbers in a sequence that sum to a target value. # Using dynamic programming, ...