From: Scott Worley Date: Thu, 29 Aug 2024 11:09:56 +0000 (-0700) Subject: Don't be O(n^2) unnecessarily X-Git-Tag: v0.3.0~17 X-Git-Url: http://git.scottworley.com/tablify/commitdiff_plain/88a08162523cf4a0a7c1286b1438fdf16ca6c802?ds=inline;hp=88a08162523cf4a0a7c1286b1438fdf16ca6c802 Don't be O(n^2) unnecessarily Use a HashMap to store a row's entries. The InputLine refactor got tangled up in this too. ---