Top "Anagram" questions

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

Why am i getting " Duplicate modifier for the type Test" and how to fix it

I was trying to make a method that returns true if given "Strings" are anagrams. unfortunately i cant even test …

java anagram
Algorithm to get a list of all words that are anagrams of all substrings (scrabble)?

Eg if input string is helloworld I want the output to be like: do he we low hell hold roll …

substring anagram
Java 8 Stream function to group a List of anagrams into a Map of Lists

Java 8 is about to be released... While learning about Streams, I got into a scenario about grouping anagrams using one …

java mapreduce java-8 anagram java-stream
Best solution for an anagram check?

I’m going through a permutation/anagram problem and wanted input on the most efficient means of checking. Now, I’…

java compare anagram
Using PHP write an anagram function?

Using PHP write an anagram function? It should be handling different phrases and return boolean result. Usage: $pharse1 = 'ball'; $pharse2 = …

php anagram
Anagram Algorithm in PHP

I'm totally a newbie with PHP. Today I just got a problem that I can't know how to solve, even …

php algorithm anagram
How do I create a list of all possible anagrams of a word in javascript?

How do I create a list of all possible anagrams of a word in javascript?If this question has already …

javascript anagram
Anagram Python 3

I'm trying to write a program that checks whether 2 inputs are anagrams. I feel like this should be relatively easy …

python python-3.x anagram
Find if 2 strings are anagram in O(1) space and O(n) time

You can find if 2 strings are anagrams after sorting both strings in O(nlogn) time, however is it possible to …

algorithm anagram
Regex - find anagrams and sub-anagrams

I have a pool of characters and I want to match all the words which are anagrams of those chars …

regex anagram