From 55021115ebd1239d3e5ae85ce21605d87feeabf6 Mon Sep 17 00:00:00 2001 From: Packy Anderson Date: Mon, 8 Jul 2024 22:01:43 -0400 Subject: Challenge 277 solutions by Packy Anderson Fix typo --- challenge-277/packy-anderson/elixir/ch-1.exs | 1 + 1 file changed, 1 insertion(+) diff --git a/challenge-277/packy-anderson/elixir/ch-1.exs b/challenge-277/packy-anderson/elixir/ch-1.exs index 2596d6539c..c297c67fe5 100755 --- a/challenge-277/packy-anderson/elixir/ch-1.exs +++ b/challenge-277/packy-anderson/elixir/ch-1.exs @@ -31,6 +31,7 @@ defmodule Multiset do def multiplicity(multiset, value) def multiplicity(%Multiset{map: map}, value), do: Map.get(map, value, 0) end + defmodule PWC do def countCommon(words1, words2) do # make Multisets that count the words -- cgit