Skip to content

Commit

Permalink
Renamed the instructions so that it matches the boilerplate code (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
wendko authored Dec 11, 2024
1 parent d83bce9 commit 8983495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions challenges/animal-sanctuary-registry/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Your task is to implement the following functions:

1. `add_animal_to_section`: This function should add an animal to a section in the registry. If the section does not exist, it should be created. If the animal is already in the section, it should not be added again.

2. `get_animals_in_section`: This function should return a list of animals sorted **alphabetically** in a given section. If the section does not exist, it should return an empty list.
2. `get_animals_in_section`: This function should return a list of animals **sorted alphabetically** in a given section. If the section does not exist, it should return an empty list.

3. `get_all_animals`: This function should return a copy of the entire registry with all animals **sorted alphabetically** in each section.
3. `get_all_animals_sorted`: This function should return a copy of the entire registry with all animals **sorted alphabetically** in each section.

## Example

Expand Down

0 comments on commit 8983495

Please sign in to comment.