Sha256: 68d2dc9eba32ba11f9690c4adc6f71beb92e5f885f0149fbd9764b464c30ddc3

Contents?: true

Size: 1.16 KB

Versions: 75

Compression:

Stored size: 1.16 KB

Contents

# Anagram

Given a word and a list of possible anagrams, select the correct sublist.

Given `"listen"` and a list of candidates like `"enlists" "google"
"inlets" "banana"` the program should return a list containing
`"inlets"`.

## Setup

There are two different methods of getting set up to run the tests with Objective-C:

- Create an Xcode project with a test target which will run the tests.
- Use the ruby gem `objc` as a test runner utility.

Both are described in more detail here: http://exercism.io/languages/objective-c

### Submitting Exercises

When submitting an exercise, make sure your solution file is in the same directory as the test code.

The submit command will look something like:

```shell
exercism submit <path-to-exercism-workspace>/objective-c/anagram/Anagram.m
```

You can find the Exercism workspace by running `exercism debug` and looking for the line beginning
with Workspace.

## Source

Inspired by the Extreme Startup game [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

75 entries across 75 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.118 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.117 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.116 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.115 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.114 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.113 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.111 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.110 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.109 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.108 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.107 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.106 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.105 tracks/objective-c/exercises/anagram/README.md
trackler-2.2.1.104 tracks/objective-c/exercises/anagram/README.md