Skip to content

Commit 3a58b49

Browse files
remove elementary MapSet.size/1 koan
size is covered under koan "However, I do not allow duplication"
1 parent 4329880 commit 3a58b49

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

lib/koans/09_map_sets.ex

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ defmodule MapSets do
99
assert Enum.fetch(@set, 0) == {:ok, ___}
1010
end
1111

12-
koan "How large is my map set?" do
13-
assert MapSet.size(@set) == ___
14-
end
15-
1612
koan "However, I do not allow duplication" do
1713
new_set = MapSet.new([1, 1, 2, 3, 3, 3])
1814

test/koans/map_sets_koans_test.exs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ defmodule MapSetsTest do
55
test "MapSets" do
66
answers = [
77
1,
8-
5,
98
3,
109
{:multiple, [false, true]},
1110
true,

0 commit comments

Comments
 (0)