What is Anagram?


WHAT IS ANAGRAM ?
                  An Anagram is a word or phrase formed to rearranging the letter's of the original word to make new a word.
                For example anagram can be rearranged the word "Binary"into"Binary".
                
APPLICATIONS:
 1. Establishment of priority:
            Astronomers and others establish their discoveries in latin anagram. In this way laid claim to new discoveries.

2. Pseudonyms:
            Anagrams are connected to pseudonyms by the fact that may conceal or reveal or operate somewhere can establish identity
            Example:
       Tom Marvolo Riddle -"I am load Voldomort"
        Elon Musk-"Tobia Gorrio"
3. Chipers:
            Multiple anagraming techniques is used to solve some kind of cryptograms , like that a "Permutatinon chiper"and "Transpostion chiper".
4. Games and puzzels :
            Cryptic Crosswords puzzels frequency used in anagramatic  clues, usualy indicating that they are anagrams
            An simple example is "Buisnessman burst into tears"(9 letters).The answer is "Stationer"is formed in "into tears"
             The letter of which have burst into out of their original arguments to form the name of the Buisnessman.

METHODS:
            > In computer program known as "Anagram servers,""Anagram  solvers" and Anagrammers.

            > To priduce a list of positive combinational words or phrase using a "Jumble Algorithm"

            > Anagram  Dictionary:
                    In Anagram dictionary the letter of word or phrase are arranged in "Alphabatical order"and these transpositions are themselves then order Alphabatiicaly within word-length groups.
                    The arrangement is used to solve "Word puzzles" such as crossword or playing games like "Scrabble"

ANAGRAM IN PROGRAMMING?
                An anagram in python to check whether the given strings are each other or not .It contains the given strings have same characters , only the order of characters can be different 

  Example: silent , listen.

 A simple code for python:
using sorted() method to sorting the given two input strings
 code:





OUTPUT:





             

                                                                    LEARN FOR US

Comments