From 35e74a90b33013bf7f35c2fd98f4e1cbace9ccf6 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Mon, 11 Dec 2023 19:43:43 +0000 Subject: [PATCH] add docstring to parseInput --- day-11/util.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/day-11/util.go b/day-11/util.go index cea9953..4c246fa 100644 --- a/day-11/util.go +++ b/day-11/util.go @@ -24,6 +24,8 @@ func readlines() []string { return lines } +// parseInput stores coordinates of galaxies +// stores empty row and column indexes func parseInput(lines []string) { x := 0 runes = make([][]rune, len(lines))