diff --git a/README.md b/README.md
index 8e39b0b..2735622 100644
--- a/README.md
+++ b/README.md
@@ -8,10 +8,10 @@ This project can also be run using the amazing [CraftOS-PC emulator](https://git
## Progress
-#### Stars: 18/24
+#### Stars: 19/24
|Mon|Tue|Wed|Thu|Fri|Sat|Sun|
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
|1
:star::star:|2
:star::star:|3
:star::star:|4
:star::star:|5
:star::star:|6
:star::star:|7
:star::star:|
-|8
:star::star:|9
:star:|10
:star:|11
|12
|||
+|8
:star::star:|9
:star:|10
:star:|11
:star:|12
|||
diff --git a/res/examples/day11.txt b/res/examples/day11.txt
new file mode 100644
index 0000000..8dc75a3
--- /dev/null
+++ b/res/examples/day11.txt
@@ -0,0 +1,10 @@
+aaa: you hhh
+you: bbb ccc
+bbb: ddd eee
+ccc: ddd eee fff
+ddd: ggg
+eee: out
+fff: out
+ggg: out
+hhh: ccc fff iii
+iii: out
\ No newline at end of file
diff --git a/res/stats.json b/res/stats.json
index 95f10e1..f96fefa 100644
--- a/res/stats.json
+++ b/res/stats.json
@@ -40,7 +40,7 @@
"puzzle2": false
},
"day11": {
- "puzzle1": false,
+ "puzzle1": true,
"puzzle2": false
},
"day12": {
diff --git a/src/day11/puzzle1.lua b/src/day11/puzzle1.lua
new file mode 100644
index 0000000..b52f0c8
--- /dev/null
+++ b/src/day11/puzzle1.lua
@@ -0,0 +1,36 @@
+local strings = require "cc.strings"
+local utils = require "utils"
+local puzzle1 = {}
+
+local cache = {}
+
+function puzzle1.countPaths(edges, startDev, endDev)
+ local key = startDev .. "-" .. endDev
+ if cache[key] then
+ return cache[key]
+ end
+ if startDev == endDev then
+ return 1
+ end
+ local outs = edges[startDev]
+ local total = 0
+ for _, out in ipairs(outs) do
+ total = total + puzzle1.countPaths(edges, out, endDev)
+ end
+ cache[key] = total
+ return total
+end
+
+function puzzle1.solve(input)
+ local lines = utils.splitLines(input)
+ local outputs = {}
+
+ for _, line in ipairs(lines) do
+ local device, outs = line:match("(.+): (.+)")
+ outputs[device] = strings.split(outs, " ")
+ end
+
+ return puzzle1.countPaths(outputs, "you", "out")
+end
+
+return puzzle1
diff --git a/src/day11/puzzle2.lua b/src/day11/puzzle2.lua
new file mode 100644
index 0000000..2f4bc9a
--- /dev/null
+++ b/src/day11/puzzle2.lua
@@ -0,0 +1,7 @@
+local puzzle2 = {}
+
+function puzzle2.solve(input)
+ return 0
+end
+
+return puzzle2