Recall the code for computing V is Input: seq1 (along columns), seq2 (along rows) Initilization: V[0,0]=0, V[i,0]=ig, V[0,j]=jg Recurrence: for i = 0 to length of seq2: for j = 0 to length of seq1: V[i,j] = max{V[i-1,j-1]+m/mm, V[i-1,j]+g, V[i,j-1]+g} Write the matrix V for sequences seq1="CTG", seq2="ACTGT". Submit in class as hardcopy on Feb 8th.