Remove extraneous console logs

Change-Id: Id60e18bd577b401ba0db25c33150e16b3a3cdd08
Reviewed-on: https://git.clicks.codes/c/Coded/AoC2023/+/88
Tested-by: Samuel Shuert <coded@clicks.codes>
Reviewed-by: Samuel Shuert <coded@clicks.codes>
diff --git a/day 1/index.ts b/day 1/index.ts
index 05fa9eb..09347d5 100644
--- a/day 1/index.ts
+++ b/day 1/index.ts
@@ -14,7 +14,6 @@
         .replaceAll('seven', 's7n')
         .replaceAll('eight', 'e8t')
         .replaceAll('nine', 'n9e')
-    console.log(newStr)
     const matches = newStr.match(/[\d]/g)
     return matches ? [matches[0], matches[matches.length-1]].join('') : null
 }