Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions config/exercise_readme.go.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
{{- with .Hints }}
{{ . }}
{{ end }}
## 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.
{{- with .TrackInsert }}
{{ . }}
{{ end }}
## Getting Started

Both are described in more detail here: http://exercism.io/languages/objective-c
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -24,7 +25,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/{{ .Spec.Slug }}/{{ .Sp
```

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

{{ with .Spec.Credits }}
## Source

Expand Down
15 changes: 7 additions & 8 deletions exercises/acronym/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ Techies love their TLA (Three Letter Acronyms)!
Help generate some jargon by writing a program that converts a long name
like Portable Network Graphics to its acronym (PNG).

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -27,7 +25,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/acronym/Acronym.m
```

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


## Source

Expand Down
15 changes: 7 additions & 8 deletions exercises/all-your-base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,12 @@ I think you got the idea!

*Yes. Those three numbers above are exactly the same. Congratulations!*

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -51,7 +49,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/all-your-base/AllYourBa
```

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


## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
15 changes: 7 additions & 8 deletions exercises/allergies/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,12 @@ allergens that score 256, 512, 1024, etc.). Your program should
ignore those components of the score. For example, if the allergy
score is 257, your program should only report the eggs (1) allergy.

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -49,7 +47,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/allergies/Allergies.m
```

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


## Source

Expand Down
18 changes: 9 additions & 9 deletions exercises/anagram/README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
# Anagram

Given a word and a list of possible anagrams, select the correct sublist.
An anagram is a rearrangement of letters to form a new word.
Given a word and a list of candidates, select the sublist of anagrams of the given word.

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

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -26,7 +25,8 @@ 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.
with `Workspace:`.


## Source

Expand Down
15 changes: 7 additions & 8 deletions exercises/atbash-cipher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,12 @@ things based on word boundaries.
- Decoding `gvhg` gives `test`
- Decoding `gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt` gives `thequickbrownfoxjumpsoverthelazydog`

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -48,7 +46,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/atbash-cipher/AtbashCip
```

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


## Source

Expand Down
15 changes: 7 additions & 8 deletions exercises/beer-song/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,14 +320,12 @@ are some additional things you could try:
Then please share your thoughts in a comment on the submission. Did this
experiment make the code better? Worse? Did you learn anything from it?

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -340,7 +338,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/beer-song/BeerSong.m
```

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


## Source

Expand Down
15 changes: 7 additions & 8 deletions exercises/binary-search/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,12 @@ A binary search halves the number of items to check with each iteration,
so locating an item (or determining its absence) takes logarithmic time.
A binary search is a dichotomic divide and conquer search algorithm.

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -54,7 +52,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/binary-search/BinarySea
```

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


## Source

Expand Down
15 changes: 7 additions & 8 deletions exercises/bob/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ anything.

He answers 'Whatever.' to anything else.

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -31,7 +29,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/bob/Bob.m
```

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


## Source

Expand Down
14 changes: 6 additions & 8 deletions exercises/bracket-push/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@
Given a string containing brackets `[]`, braces `{}` and parentheses `()`,
verify that all the pairs are matched and nested correctly.

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -23,7 +21,7 @@ exercism submit <path-to-exercism-workspace>/objective-c/bracket-push/BracketPus
```

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

## Source

Expand Down
15 changes: 7 additions & 8 deletions exercises/clock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ You should be able to add and subtract minutes to it.

Two clocks that represent the same time should be equal to each other.

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -26,7 +24,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/clock/Clock.m
```

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


## Source

Expand Down
15 changes: 7 additions & 8 deletions exercises/collatz-conjecture/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,12 @@ Starting with n = 12, the steps would be as follows:

Resulting in 9 steps. So for input n = 12, the return value would be 9.

## Setup
## Getting Started

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
Make sure you have read the [Installing](https://exercism.io/tracks/objective-c/installation) and
[Running the Tests](https://exercism.io/tracks/objective-c/tests) pages for Objective-C on exercism.io.
This covers the basic information on setting up the development
environment expected by the exercises.

### Submitting Exercises

Expand All @@ -46,7 +44,8 @@ exercism submit <path-to-exercism-workspace>/objective-c/collatz-conjecture/Coll
```

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


## Source

Expand Down
Loading