Checking Two String are Same or Not Without using inbuilt functions
Statement
Check if two string are same are not if yes print True and if not Print False, dont use any inbuilt function.
Input 1 :
horse
house
Output 1 :
False
Input 2 :
house
house
Output 1 :
True
import java.util.*;
public class Main
{
public ...
gouravmk.hashnode.dev1 min read