Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove printable charlists from bird-count (lists) #1398

Merged
merged 2 commits into from
Jan 7, 2024
Merged
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
1 change: 1 addition & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ github.com/pulls
twitter.com
regexr.com
papyr.com
reddit.com
4 changes: 2 additions & 2 deletions exercises/concept/bird-count/test/bird_count_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule BirdCountTest do

@tag task_id: 1
test "returns today's bird count" do
assert BirdCount.today([7]) == 7
assert BirdCount.today([5]) == 5
assert BirdCount.today([2, 4, 11, 10, 6, 8]) == 2
end
end
Expand All @@ -22,7 +22,7 @@ defmodule BirdCountTest do

@tag task_id: 2
test "adds 1 to today's bird count" do
assert BirdCount.increment_day_count([7]) == [8]
assert BirdCount.increment_day_count([5]) == [6]
assert BirdCount.increment_day_count([4, 2, 1, 0, 10]) == [5, 2, 1, 0, 10]
end
end
Expand Down
Loading