Skip to content

Commit ee576b6

Browse files
author
Alireza Alavi
committed
fix: namespaces
1 parent b1e7706 commit ee576b6

File tree

3 files changed

+4
-21
lines changed

3 files changed

+4
-21
lines changed

src/aoc/2024/day4/main.clj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
;; TODO
12
;; The goal is to find all instances of "XMAS" in the input.(count)
23
;;The word can be written in horizontal,vertical and diagonal, forwards and backwards.
34

@@ -8,9 +9,9 @@
89
;; - Get the 3 elements diagonal to it (right-below)
910
;; Now we have 3 sets of 4 elements. We check if they match "XMAS" forwards or backwards, if yes, we add to the count
1011

11-
(ns day4.main
12+
(ns aoc.2024.day4.main
1213
(:require [clojure.string :as str])
13-
(:require [util.main :as util])
14+
(:require [aoc.util.main :as util])
1415
(:gen-class))
1516

1617
(def input-lines

src/aoc/util/clerk_viewer.clj

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/aoc/util/main.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;; Helper Functions of AoC
22

3-
(ns util.main
3+
(ns aoc.util.main
44
(:require [clojure.data.int-map :as i]))
55

66
;; Thanks to narimiran/aoc2024

0 commit comments

Comments
 (0)