// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License ...
int[][]dp=new int[s1.length()+1][s2.length()+1]; int deleteS1=s1.charAt(i-1) + helper(s1,s2,i-1,j,dp); int deleteS2=s2.charAt(j-1) + helper(s1,s2,i,j-1,dp); ...