Solution Quiz 6 - Version B Problem 1 def deleteNegatives(L): index = 0 while index < len(L): if L[index] < 0: del L[index] else: index = index + 1 Problem 2 for i in range(len(word1)): if word1[i] != word2[i]: count = count + 1