renamed module... for some reason

This commit is contained in:
alexchao26
2020-11-27 02:53:18 -05:00
parent b883a59052
commit 574bb4b9cc
58 changed files with 100 additions and 78 deletions
-1
View File
@@ -2,7 +2,6 @@ package util
// RotateGrid returns the inputted grid, rotated counterclockwise
// call it multiple times for 180, & 270 degree rotations
// TODO modify this to take in any type (not just strings...)
func RotateGrid(grid [][]string) [][]string {
rotated := make([][]string, len(grid[0]))
for i := range rotated {