Sha256: ccb90de74823cce28000f3d2ef94b89d5d48e7338c4e95ed536e5f10a602d97c

Contents?: true

Size: 1.63 KB

Versions: 21

Compression:

Stored size: 1.63 KB

Contents

# Allergies

Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.

An allergy test produces a single numeric score which contains the
information about all the allergies the person has (that they were
tested for).

The list of items (and their value) that were tested are:

* eggs (1)
* peanuts (2)
* shellfish (4)
* strawberries (8)
* tomatoes (16)
* chocolate (32)
* pollen (64)
* cats (128)

So if Tom is allergic to peanuts and chocolate, he gets a score of 34.

Now, given just that score of 34, your program should be able to say:

- Whether Tom is allergic to any one of those allergens listed above.
- All the allergens Tom is allergic to.

Note: a given score may include allergens **not** listed above (i.e.
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.

## Submitting Exercises

Note that, when trying to submit an exercise, make sure the solution is in the `exercism/python/<exerciseName>` directory.

For example, if you're submitting `bob.py` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/python/bob/bob.py`.

For more detailed information about running tests, code style and linting,
please see the [help page](http://exercism.io/languages/python).

## Source

Jumpstart Lab Warm-up [http://jumpstartlab.com](http://jumpstartlab.com)

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

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
trackler-2.2.1.74 tracks/python/exercises/allergies/README.md
trackler-2.2.1.73 tracks/python/exercises/allergies/README.md
trackler-2.2.1.72 tracks/python/exercises/allergies/README.md
trackler-2.2.1.71 tracks/python/exercises/allergies/README.md
trackler-2.2.1.70 tracks/python/exercises/allergies/README.md
trackler-2.2.1.69 tracks/python/exercises/allergies/README.md
trackler-2.2.1.68 tracks/python/exercises/allergies/README.md
trackler-2.2.1.67 tracks/python/exercises/allergies/README.md
trackler-2.2.1.66 tracks/python/exercises/allergies/README.md
trackler-2.2.1.65 tracks/python/exercises/allergies/README.md
trackler-2.2.1.64 tracks/python/exercises/allergies/README.md
trackler-2.2.1.63 tracks/python/exercises/allergies/README.md
trackler-2.2.1.62 tracks/python/exercises/allergies/README.md
trackler-2.2.1.61 tracks/python/exercises/allergies/README.md
trackler-2.2.1.60 tracks/python/exercises/allergies/README.md
trackler-2.2.1.59 tracks/python/exercises/allergies/README.md
trackler-2.2.1.58 tracks/python/exercises/allergies/README.md
trackler-2.2.1.57 tracks/python/exercises/allergies/README.md
trackler-2.2.1.56 tracks/python/exercises/allergies/README.md
trackler-2.2.1.55 tracks/python/exercises/allergies/README.md