tracks/objective-c/exercises/isogram/README.md in trackler-2.2.1.103 vs tracks/objective-c/exercises/isogram/README.md in trackler-2.2.1.104

- old
+ new

@@ -1,16 +1,17 @@ # Isogram Determine if a word or phrase is an isogram. -An isogram (also known as a "nonpattern word") is a word or phrase without a repeating letter. +An isogram (also known as a "nonpattern word") is a word or phrase without a repeating letter, however spaces and hyphens are allowed to appear multiple times. Examples of isograms: - lumberjacks - background - downstream +- six-year-old The word *isograms*, however, is not an isogram, because the s repeats. ## Setup @@ -19,15 +20,21 @@ - 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. -For example, if you're submitting `Bob.m` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/objective-c/bob/Bob.m`. +The submit command will look something like: + +```shell +exercism submit <path-to-exercism-workspace>/objective-c/isogram/Isogram.m +``` + +You can find the Exercism workspace by running `exercism debug` and looking for the line beginning +with Workspace. ## Source Wikipedia [https://en.wikipedia.org/wiki/Isogram](https://en.wikipedia.org/wiki/Isogram)