Top "Anagram" questions

A word, phrase, or name formed by rearranging the letters of another, such as cinema, formed from iceman.

How to check if two words are anagrams

I have a program that shows you whether two words are anagrams of one another. There are a few examples …

java string algorithm anagram
Using Python, find anagrams for a list of words

If I have a list of strings for example: ["car", "tree", "boy", "girl", "arc"...] What should I do in order …

python anagram
Finding anagrams for a given word

Two words are anagrams if one of them has exactly same characters as that of the another word. Example : Anagram &…

algorithm data-structures language-agnostic anagram
Anagrams finder in javascript

I am supposed to write a program in JavaScript to find all the anagrams within a series of words provided. …

javascript string function comparison anagram
Anagram algorithm in java

I would like to make anagram algorithm but This code doesn't work. Where is my fault ? For example des and …

java algorithm data-structures anagram
Checking strings against each other (Anagrams)

The assignment is to write a program that accepts two groups of words from the user and then prints a "…

python anagram
Check whether two strings are anagrams using C++

The program below I came up with for checking whether two strings are anagrams. Its working fine for small string …

c++ string char anagram
Checking if two Strings are anagram of each other using basic Java

I am writing following code in java Netbeans which is working quite good for normal anagrams. But if the two …

java anagram
Ruby anagram solver

I am wanting to write a anagram type solver in Ruby but it will work against a list of words, …

ruby algorithm search anagram
get list of anagrams from a dictionary

Basically, Anagrams are like permutation of string.E.g stack ,sackt ,stakc all are anagrams of stack (thought above words …

data-structures hash anagram