Recall the code for computing V is Input: seq2 (along columns), seq1 (along rows) Initilization: V[0,0]=0 for i = 1 to length of seq1 { V[i,0]=i*g } for j = 1 to length of seq2 { V[0,j]=j*g } Recurrence: for i = 1 to length of seq1: for j = 1 to length of seq2: V[i-1,j-1] + m (or mm) V[i,j] = max{ V[i-1,j]+g V[i,j-1]+g Write the matrix V for sequences seq1="TAG", seq2="CTGGA". Use m=10, mm=2, g=-5, Submit in class as hardcopy on Feb 22nd.