给出n个只包含小写字母'a'~'z'的字符串,我们称一个字符串为原根,当且仅当给出的其他任何字符串都不是它的前缀。 现在牛牛想知道给出的字符串中有多少个原根。 (相同字符串互为前缀)
示例1
输入
3,["a","ab","ba"]
输出
2
说明
"a"是原根
因为"a"是"ab"的前缀,所以"ab"不是原根
"ba"是原根
备注:
第一个参数n代表字符串个数第二个参数vector s包含n个元素代表给出的字符串。
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ public int solve (int n, String[] s) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串vector * @return int整型 */ int solve(int n, vector
& s) { // write code here } };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param n int整型 # @param s string字符串一维数组 # @return int整型 # class Solution: def solve(self , n , s ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ public int solve (int n, List
s) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ function solve( n , s ) { // write code here } module.exports = { solve : solve };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param n int整型 # @param s string字符串一维数组 # @return int整型 # class Solution: def solve(self , n , s ): # write code here
package main /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ func solve( n int , s []string ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @param sLen int s数组长度 * @return int整型 */ int solve(int n, char** s, int sLen ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param n int整型 # @param s string字符串一维数组 # @return int整型 # class Solution def solve(n, s) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ def solve(n: Int,s: Array[String]): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ fun solve(n: Int,s: Array
): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ public int solve (int n, String[] s) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ export function solve(n: number, s: string[]): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ func solve ( _ n: Int, _ s: [String]) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param s string字符串一维数组 * @return int整型 */ pub fn solve(&self, n: i32, s: Vec
) -> i32 { // write code here } }
3,["a","ab","ba"]
2