No commit activity in last 3 years
No release in over 3 years
For solving anagram words
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0
~> 2.14
 Project Readme

Anagram Solver

It's a simple ruby gem for solving anagram puzzles.

It will return all the possible anagrams (valid words) for the given word. An empty array will be returned if no valid anagrams are available for a word.

Installation

Add this line to your application's Gemfile:

gem 'the_anagram_solver'

And then execute:

$ bundle

Or install it yourself as:

$ gem install the_anagram_solver

Usage

as = AnagramSolver::Anagram.new

as.solve("rat")
=> ["art", "rat", "tar"]

as.solve("ouhioyuyyy")
=> []

Website

http://anagramsolver.me