Two Strings


Problem Statement :


Given two strings, determine if they share a common substring. A substring may be as small as one character.

Example

s1 = 'and'
s2  = 'art'


These share the common substring a.

s1 = 'be'
s2 = 'cat'


These do not share a substring.

Function Description

Complete the function twoStrings in the editor below.

twoStrings has the following parameter(s):

string s1: a string
string s2: another string

Returns

string: either YES or NO

Input Format

The first line contains a single integer p, the number of test cases.

The following p pairs of lines are as follows:

The first line contains string s1.
The second line contains string s2.


Constraints

s1 and s2 consist of characters in the range ascii[a-z].
1  <=  p  <= 10
1  <=  | s1 |, | s2 |  <= 10^5

Output Format

For each pair of strings, return YES or NO.



Solution :



title-img


                            Solution in C :

In  C++  :




#include <bits/stdc++.h>
using namespace std;
int main()
{
    int a; cin >> a;
    for (int g=0;g<a; g++)
    {
        string b,c; cin >> b >> c; map <char,int> k; 
        for (int y=0;y<b.length(); y++) k[b[y]]=1; int counter=0; 
        for (int y=0;y<c.length(); y++) 
        {
            if (k[c[y]]) counter=1; 
        }
        if (counter) cout << "YES" << '\n';
        else cout << "NO" << '\n'; 
    }return 0; 
}







In   Java  :







import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;

public class Solution {

    public static void main(String[] args) {
      Scanner sc = new Scanner(System.in);
      int t = sc.nextInt();
      while(t-- > 0){
        char[] s1 = sc.next().toCharArray();
        char[] s2 = sc.next().toCharArray();
        int[] chs = new int[1000];
        for(int i = 0; i < s1.length; i++){
          chs[s1[i]]++;
        }
        String result = "NO";
        for(int i = 0; i < s2.length; i++){
          if(chs[s2[i]]>0){
            result = "YES";
            break;
          }
        }
        System.out.println(result);
      }
    }
}








In   C  :








#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>

int main() {
    int k;
    scanf("%d",&k);
    while(k>0)
        {
        char str[110000],btr[110000];
        int cn1[500],cn2[500],i,j,t,a,b;
        for(i=0;i<500;i++)
            {
            cn1[i]=0;
            cn2[i]=0;
        }
        scanf("%s",str);
        scanf("%s",btr);
        a=strlen(str);
        b=strlen(btr);
        for(i=0;i<a;i++)
            {
            cn1[str[i]]++;
        }
        for(i=0;i<b;i++)
            {
            cn2[btr[i]]++;
        }
        t=0;
        for(i=0;i<500;i++)
            {
            if(cn1[i]*cn2[i]>0)
                {
                t=1;
                break;
            }
        }
        if(t)
            {
            printf("YES\n");
        }
        else
            {
            printf("NO\n");
        }
        k--;
    }
    return 0;
}








In  Python3  :





a = int(input())
for i in range(a):
    i = (input())
    j = (input())
    setx = set([a for a in i])
    sety = set([y for y in j])
    if setx.intersection(sety) == set():
        print("NO")
    else:
        print("YES")
                        








View More Similar Problems

Polynomial Division

Consider a sequence, c0, c1, . . . , cn-1 , and a polynomial of degree 1 defined as Q(x ) = a * x + b. You must perform q queries on the sequence, where each query is one of the following two types: 1 i x: Replace ci with x. 2 l r: Consider the polynomial and determine whether is divisible by over the field , where . In other words, check if there exists a polynomial with integer coefficie

View Solution →

Costly Intervals

Given an array, your goal is to find, for each element, the largest subarray containing it whose cost is at least k. Specifically, let A = [A1, A2, . . . , An ] be an array of length n, and let be the subarray from index l to index r. Also, Let MAX( l, r ) be the largest number in Al. . . r. Let MIN( l, r ) be the smallest number in Al . . .r . Let OR( l , r ) be the bitwise OR of the

View Solution →

The Strange Function

One of the most important skills a programmer needs to learn early on is the ability to pose a problem in an abstract way. This skill is important not just for researchers but also in applied fields like software engineering and web development. You are able to solve most of a problem, except for one last subproblem, which you have posed in an abstract way as follows: Given an array consisting

View Solution →

Self-Driving Bus

Treeland is a country with n cities and n - 1 roads. There is exactly one path between any two cities. The ruler of Treeland wants to implement a self-driving bus system and asks tree-loving Alex to plan the bus routes. Alex decides that each route must contain a subset of connected cities; a subset of cities is connected if the following two conditions are true: There is a path between ever

View Solution →

Unique Colors

You are given an unrooted tree of n nodes numbered from 1 to n . Each node i has a color, ci. Let d( i , j ) be the number of different colors in the path between node i and node j. For each node i, calculate the value of sum, defined as follows: Your task is to print the value of sumi for each node 1 <= i <= n. Input Format The first line contains a single integer, n, denoti

View Solution →

Fibonacci Numbers Tree

Shashank loves trees and math. He has a rooted tree, T , consisting of N nodes uniquely labeled with integers in the inclusive range [1 , N ]. The node labeled as 1 is the root node of tree , and each node in is associated with some positive integer value (all values are initially ). Let's define Fk as the Kth Fibonacci number. Shashank wants to perform 22 types of operations over his tree, T

View Solution →