1143. 最长公共子序列 class Solution:def longestCommonSubsequence(self, text1: str, text2: str) -> int:n1 = len(text1)n2 = len(text2)dp = [[0]*(n2+1) for _ in range(n1+1)]for i in range(1,n1+1):for j in rang
文章目录 @[TOC](文章目录)SummaryC++ convert from string to LPCWSTRC++ convert from LPCWSTR to string解决方法二解决方法三Reference Summary Encountered problem in convert from string to CString (LPCWSTR), and the r