给定一个string数组str及其大小n。请编写一段代码找出该数组中最长的那个字符串,且要求该字符串能由数组中其他的字符串组成(使用的字符串可重复)。请返回满足要求的最长字符串的长度,保证题意所述的最长单词存在。 测试样例: ["a","b","c","ab","bc","abc"],6 返回:3
加载中...
import java.util.*; public class LongestString { public int getLongest(String[] str, int n) { // write code here } }
class LongestString { public: int getLongest(vector
str, int n) { // write code here } };
# -*- coding:utf-8 -*- class LongestString: def getLongest(self, s, n): # write code here
class LongestString { public int getLongest(string[] str, int n) { // write code here } }