-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrefix match with other strings.java
More file actions
64 lines (52 loc) · 1.3 KB
/
Prefix match with other strings.java
File metadata and controls
64 lines (52 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//{ Driver Code Starts
//Initial Template for Java
import java.io.*;
import java.util.*;
class GFG
{
public static void main(String args[])
{
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
while(t>0)
{
int n = sc.nextInt();
String[] arr = new String[n];
for(int i=0;i<n;i++)
{
arr[i] = sc.next();
}
int k = Integer.parseInt(sc.next());
String str = sc.next();
Solution obj = new Solution();
int ans = obj.klengthpref(arr,n,k,str);
System.out.println(ans);
t--;
}
}
}
// } Driver Code Ends
//User function Template for Java
class Solution
{
public int klengthpref(String[] arr, int n, int k, String str)
{
// code here
int count = 0;
if(k<=str.length())
{
String gPref = str.substring(0,k);
for(String s:arr)
{
if(k<=s.length())
{
if((s.substring(0,k)).equals(gPref))
{
count++;
}
}
}
}
return count;
}
}