From 67d32e6710d7f333647c61a400e35c51bcc1d4ed Mon Sep 17 00:00:00 2001 From: Adam <34751694+bernot-dev@users.noreply.github.com> Date: Sun, 28 Jan 2024 10:00:51 -0700 Subject: [PATCH] Update tracks/go/exercises/nucleotide-count/mentoring.md Co-authored-by: Isaac Good --- tracks/go/exercises/nucleotide-count/mentoring.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tracks/go/exercises/nucleotide-count/mentoring.md b/tracks/go/exercises/nucleotide-count/mentoring.md index b85e8ca1a..227d5cd09 100644 --- a/tracks/go/exercises/nucleotide-count/mentoring.md +++ b/tracks/go/exercises/nucleotide-count/mentoring.md @@ -2,7 +2,8 @@ ### Reasonable Solutions -Using a map is probably the most idiomatic solution to this problem, especially since the Histogram type basically must be a map. Using a switch is about 4 times faster over the provided test cases because it does not require hashing. +Using a map is probably the most idiomatic solution to this problem, especially since the Histogram type basically must be a map. +Using a switch is about four times faster over the provided test cases because it does not require hashing. #### Map Example ```Go