Skip to content
This repository was archived by the owner on Nov 26, 2019. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Anagram Strings

An anagram of a string is another string which contains the same characters, only order of characters can be different.

Input Format

  • The input consists of two lines.
  • First line will contain the first string.
  • Second line will contain the second string.

Output Format

  • The output consists of a single line.
  • If the given strings are anagram or not

Sample Input

Enter your first string
prateek
Enter your second string
keparte

Sample Output

Two strings are anagram of each other

Implemented in: