Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
8answers
2k views

Code golf: find all anagrams

A word is an anagram if the letters in that word can be re-arranged to form a different word. Task: The shortest source code by character count to find all sets of anagrams given a word list. ...
7
votes
4answers
247 views

How Can I Speed Up This Anagram Algorithm

I am making a mobile app to find anagrams and partial matches. Mobile is important because there is not a whole lot of computational power, and efficiency is key. The algorithm takes any number of ...
5
votes
3answers
148 views

Array of Strings contains only anagrams?

I have been given an exercise about anagrams and it looked so really easy that I have a doubt I am missing something. The solution I implemented is the one I will present shortly, and I wanted to ask ...
5
votes
4answers
2k views

Check my anagram code from a job interview in the past

Had the following as an interview question a while ago and choked so bad on basic syntax that I failed to advance (once the adrenalin kicks in, coding goes out the window.) Given a list of string, ...
5
votes
5answers
1k views

Finding anagaram(s) of dictionary words

How can I take an input word (or sequence of letters) and output a word from a dictionary that contains exactly those letters? Does java has an English dictionary class (list of words) that I can ...
4
votes
5answers
2k views

Algorithm to find longest anagram

Let's say that we have a dictionary of about 250.000 words. Algorithm should take in 12 letters as an array or a string and find the variation that matches longest word from a dictionary. Of course, ...
3
votes
3answers
503 views

Anagram algorithm with minimum complexity

I recently was asked to design an algorithm that checks if two strings are anagrams of one another. My goal was to minimize space and time complexity, so I came up with this algorithm: Create an ...
2
votes
2answers
44 views

quick way to jumble the order of an nstring?

Does anyone know of an existing way to change the order of an existing NSString or NSMutableString's characters? I have a workaround in mind anyway but it would be great if there was an existing ...
2
votes
7answers
81 views

how do i go over lines in an open text file on Python (2.72)

i have a txt files with a few thousands of words in it (one word in a line). iv'e written a function which take two words (strings), and checks if one word is an Anagram of the other (that means if ...
2
votes
4answers
303 views

Anagram Code in Python - Compare dynamically generated strings to a txt file [closed]

I have written an Anagram solving program in Python. I wanted your opinion on whether I had gone about it right. Let me explain the logic: First, the user provides input of two words that he/she ...
2
votes
3answers
221 views

Objective-C jumbled letters solver

I am trying to create this app on the iphone that given 6 letters, it would output all the possible 3-6 letter english words. I already have a dictionary, I just want to know how to do it. I ...
2
votes
2answers
91 views

Querying MySQL for anagrams

I have this script: $db = mysql_connect($hostname, $db_user, $db_password); mysql_select_db($database,$db) or die( "Unable to select database"); mysql_query("set names 'utf8'"); $wordy = "pate"; ...
2
votes
2answers
389 views

Finding anagrams in a word list

I have a word list and a file containing a number of anagrams. These anagrams are words found in the word list. I need to develop an algorithm to find the matching words and produce them in an output ...
2
votes
3answers
477 views

Python- Possible English one-word anagrams given input letters

I know variations of this have been asked before, but I was unable to understand any of the previous implementations because most of them involved using sets and the issubset method. Here is what I ...
2
votes
3answers
271 views

Python- Code Optimization Help- Find all dictionary-valid anagrams of a word

I solved the problem using this (horribly inefficient method): def createList(word, wordList): #Made a set, because for some reason permutations was returning duplicates. #Returns all ...
2
votes
3answers
200 views

JavaScript algorithm to match words in a dictionary

I have an array that contains a few thousand words. I have an input field on my webpage that allows a user to enter in a couple of letters, and then hit search. When the user hits search, the ...
2
votes
5answers
642 views

Improvements to anagram

Just finished up a recent homework, but I know it could be more efficient. It reads two words from command line, ignores spaces and punctuation, and determines if they are anagrams. What I have is ...
2
votes
3answers
251 views

Regex match that must contain all characters in a string

I'm sure this has already been asked and answered, but I honestly couldn't find my answer after searching for quite a bit and reading Regex Tutorial. What I'm looking to do is match a string that has ...
2
votes
5answers
2k views

Java Anagram Solver

I can work out how to create anagrams of a string but I don't know how I can compare them to a dictionary of real words to check if the anagram is a real word. Is there a class in the Java API that ...
2
votes
5answers
1k views

Finding words from random input letters in python. What algorithm to use/code already there?

I am trying to code a word descrambler like this one here and was wondering what algorithms I should use to implement this. Also, if anyone can find existing code for this that would be great as well. ...
2
votes
6answers
825 views

How do I create subset words for an anagram application (php)?

I created an anagram creating application, by creating an anagram field in my database, with a lower cased alphabetically stored string. For example, suction becomes cinostu, ear becomes aer, and so ...
2
votes
8answers
3k views

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 well word hello lower world ... all the way up to the longest word that is an anagram of a substring of ...
1
vote
5answers
147 views

Given a string array, return all groups of strings that are anagrams

Given a string array, return all groups of strings that are anagrams. My solutions: For each string word in the array, sort it O(m lg m), m is the average length of a word. Build up a hash Table ...
1
vote
2answers
86 views

Find anagrams JavaScript jQuery

Lets Say I have a list like Dog dOg God doggy dogg Zebra Wood What I want to do is find all the words in the list regardless of case, or regardless of the actual word. I want to match the letters ...
1
vote
3answers
337 views

anagram algorithm

Which is the best way of generating anagrams for a text(maximum 80 characters length). Example: Input: dog output dog dgo odg ogd gdo god I'm only thinking of a backtracking solution, but that will ...
1
vote
1answer
134 views

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 been asked please direct me to the answer? Thank You
1
vote
5answers
669 views

How would you approach a PHP + MySQL anagram solver?

Does anyone have any ideas, links or algorithms for solving an anagram with PHP and MySQL. If anyone has a good English Dictionary that would be appreciated also. I am looking to achieve something ...
1
vote
3answers
812 views

Anagrams finder in javascript

I am supposed to write a program in JavaScript to find all the anagrams within a series of words provided. e.g.: "monk, konm, nkom, bbc, cbb, dell, ledl, llde" The output should be categorised into ...
0
votes
0answers
23 views

set custom class to be equal to UIView node from array

Hi this should be an easy question I reckon. I am using a class called AnagramLetter and am trying to loop through a series of subviews each of which have the class AnagramLetter, using the following ...
0
votes
2answers
49 views

How would you sort strings such that the anagrams are close to each other in C++?

It'd be really to implement in Java, since you could use the Comparator and the built in methods to sort character arrays and compare strings like this: public class AnagramComparator implements ...
0
votes
2answers
101 views

Anagram solving error python (solved)

I have written an anagram solving algorithm, which does not work. for word in wordlist: #Checking for equal length if sorted(word.replace("\n", "")) == sorted(anagram): ...
0
votes
1answer
43 views

How to shuffle the letters of a word in php

I saw on some SO posts that to shuffle arrays, you would use php's shuffle($array);. However, my problem is that I generate a randomn word from the dictionary (which I know how to do and is working) ...
0
votes
3answers
43 views

(permutation/Anagrm) words find in python 2.72 (need help to find what's wrong with my code)

i hope this request is legit. i'm taking a programming course in python for engineers, so i'm kinda new at this business. anyway, in my homework i was requested to write a function with receive two ...
0
votes
5answers
97 views

Finding and grouping anagrams by Python

input: ['abc', 'cab', 'cafe', 'face', 'goo'] output: [['abc', 'cab'], ['cafe', 'face'], ['goo']] The problem is simple: it groups by anagrams. The order doesn't matter. Of course, I can do this by ...
0
votes
2answers
128 views

Java Anagrams reading from dictionary file

I am having trouble comparing my dictionary file to the anagrams. I put a print statement at each and it is reading in the dictionary file correctly and it is also calculating all of the anagrams ...
0
votes
2answers
68 views

Wordlist transfer for an anagram program

I'm almost finished with my program, but there's one last bug that I'm having problems ferreting out. The program is supposed to check about 10 scrambled words against a wordlist to see what the ...
0
votes
2answers
400 views

Anagram generator for C++ (not using STL)

I am trying to create an anagram solver just using a very basic, procedural approach. I am finding out that I probably should have done this using classes, but now it is too late and my assignment is ...
0
votes
3answers
395 views

Strings & possible anagrams of those strings

I know it sounds like it's been done before but I don't think it has :P. I'm doing a wee project (in Java) while uni is out just to test myself and I've hit a stumbling block. I'm trying to write a ...
0
votes
1answer
399 views

Slow Anagram Algorithm

I have been working on an algorithm to rearranging the letters of a word, but it takes much time to find the correct word. var Form1: TForm1; DictionaryArray : array[0..2000] of string; const ...
0
votes
1answer
498 views

Multiplayer Networked Anagram game

I need some help about this little project. I'm begginer in java and it seems to me too hard to make it by myself. So please Help me. I will apperciate any help... A waiter delivers a sequence of ...
0
votes
6answers
1k views

Scrabble Anagram Generator

I am trying to write a scrabble anagram generator. So far my code sort of works, but it's horribly slow, and has bugs. One being it will use letters more than once. For example: Letters inputted: ...
-1
votes
2answers
89 views

Comparing between two words (Anagrams) in Python 2.72 [closed]

Possible Duplicate: Checking if two strings are permutations of each other in Python I need to write a function which receives two words (strings), and checks if the two words have exactly ...
-1
votes
1answer
53 views

Netbeans anagram problem [closed]

Every time I am trying to run a program,an "Anagram" pops up and I cannot run my program. How to make it disappear? Thanks
-1
votes
1answer
286 views

Group together all the anagrams [closed]

Problem statement: You are given a set of k strings, each length n. You have to output the group of anagrams together. Anagrams are like e.g atm - mat , like-kile.
-3
votes
2answers
88 views

How to find anagram frequency in a string?

Given a string value of arbitrary length, you're supposed to determine the frequency of words which are anagrams of each other. public static Map<String, Integer> ...