* longest common subsequence * @param s1 string字符串 the string * @param s2 string字符串 the string * @return string字符串 */ function LCS( s1 , s2 ) { // write code here let sum='' let res2=[] if(s1.length==0||s2.length==0){return -1;} for(let i=0;i<=s2.length;i++){ let ...