题目描述:删除 s 中的一些字符,使得它构成字符串列表 d 中的一个字符串,找出能构成的最长字符串。如果有多个相同长度的结果,返回字典序的最小字符串。 通过删除字符串 s 中的一个字符能得到字符串 t,可以认为 t 是 s 的子序列,我们可以使用双指针来判断一个字符串是否为另一个字符串的子序列。 class Solution {public String findLongestWord(Stri
题目内容 给定一个字符串s和一个字符串列表d,通过删除字符串s中的一些字符可以在字符串列表d中找到与其相同的字符串。找出d中属于s的最长子序列。Given a string and a string dictionary, find the longest string in the dictionary that can be formed by deleting some character