public class Solution { public int minDistance(String word1, String word2) { // Start typing your Java solution below // DO NOT write main() function int t1 = word1.length(); int t2 = word2.length(); int[][] k= new int[t1+1][t2+1]; for(int i=0;i