Skip to content

Commit

Permalink
Update instructions.md
Browse files Browse the repository at this point in the history
Change camelCase to snake_case for function name
  • Loading branch information
evanasse authored and lpil committed Apr 15, 2024
1 parent 1fbecc7 commit fc54ee3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/gotta-snatch-em-all/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ boring_cards([set.from_list(["Scientuna"]), set.from_list(["Newthree", "Scientun

Do you and your friends collectively own all of the Blorkemon™️ cards?

Implement `totalCards`, which takes a list of collections and returns the total number of different cards in all of the collections.
Implement `total_cards`, which takes a list of collections and returns the total number of different cards in all of the collections.

```gleam
totalCards [set.from_list(["Scientuna"]), set.from_list(["Newthree", "Scientuna"])]
total_cards [set.from_list(["Scientuna"]), set.from_list(["Newthree", "Scientuna"])]
// -> 2
```

Expand Down

0 comments on commit fc54ee3

Please sign in to comment.