Skip to content

Commit

Permalink
Finished task
Browse files Browse the repository at this point in the history
  • Loading branch information
espensl2000 committed Aug 13, 2024
1 parent 83ab2ab commit 2572ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csharp-fundamentals-lists.Main/Core.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public List<string> Question4()
// be sure to include the MoreIceCream and EvenMoreIceCream lists


List<string> results = _iceCreams.Concat(this.MoreIceCream).Distinct().ToList();
List<string> results = _iceCreams.Concat(this.MoreIceCream).Concat(EvenMoreIceCream).Distinct().ToList();
// remove exception and write code here
return results;
}
Expand Down

0 comments on commit 2572ade

Please sign in to comment.