#Skeleton file for HW1 - Winter 2020 - extended intro to CS #Add your implementation to this file #you may NOT change the signature of the existing functions. #Change the name of the file to include your ID number (hw1_ID.py). #Question 3 def max_word_len(filename): inFile = open(filename, "r") outFile = open("output.txt", "w") #add your implementation here #************************************************************** #Question 5 def k_boom(start, end, k): pass #replace with your implementation #************************************************************** #Question 6 def max_div_seq(n, k): pass #replace with your implementation ######## # Tester ######## def test(): #testing Q5 s = k_boom(797, 802, 7) if s != 'boom-boom! bada-boom! boom! 800 801 802': print("error in k_boom()") #testing Q6 if max_div_seq(23300247524689, 2) != 4: print("error in max_div_seq()") if max_div_seq(1357, 2) != 0: print("error in max_div_seq()")