public class Solution { /** * @param A, B: Two string. * @return: the length of the longest common substring. */ public int longestCommonSubsequence(String A, String B) { int lenA = A.length(); int lenB = B.length(); if(lenA==0 || lenB==0){ return 0;…