Sha256: 44bb415e6286e50031b4f73646ddcfbad23c702c44d38e49fe1f2a25b4da2c3b

Contents?: true

Size: 1.65 KB

Versions: 99

Compression:

Stored size: 1.65 KB

Contents

# Secret Handshake

> There are 10 types of people in the world: Those who understand
> binary, and those who don't.

You and your fellow cohort of those in the "know" when it comes to
binary decide to come up with a secret "handshake".

```
1 = wink
10 = double blink
100 = close your eyes
1000 = jump


10000 = Reverse the order of the operations in the secret handshake.
```

Given a decimal number, convert it to the appropriate sequence of events for a secret handshake.

Here's a couple of examples:

Given the input 3, the function would return the array
["wink", "double blink"] because 3 is 11 in binary.

Given the input 19, the function would return the array
["double blink", "wink"] because 19 is 10011 in binary.
Notice that the addition of 16 (10000 in binary)
has caused the array to be reversed.

## 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.

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`.

## Source

Bert, in Mary Poppins [http://www.imdb.com/character/ch0011238/quotes](http://www.imdb.com/character/ch0011238/quotes)

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

Version data entries

99 entries across 99 versions & 1 rubygems

Version Path
trackler-2.2.1.43 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.42 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.41 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.40 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.39 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.38 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.37 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.36 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.35 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.34 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.33 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.32 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.31 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.30 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.29 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.28 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.27 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.26 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.25 tracks/objective-c/exercises/secret-handshake/README.md
trackler-2.2.1.24 tracks/objective-c/exercises/secret-handshake/README.md