Skip to content

GH-96 #100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Dec 25, 2022
Merged

GH-96 #100

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ A data structure is a data organization, management, and storage format that is
<tr>
<td>Big-O</td>
<td>
<a href="/concepts/python/big-o.md"><code>py</code></a>
<a href="/concepts/python/big-o.md"><code>py🐍</code></a>
<a href="/concepts/typescript/big-o.md"><code>ts</code></a>
</td>
<tr>
<td>Bitwise</td>
<td>
<a href="/concepts/python/bitwise.md"><code>py</code>
<a href="/concepts/python/bitwise.md"><code>py🐍</code></a>
<a href="/concepts/cpp/bitwise.md"><code>cpp</code></a>
</td>
</tr>
Expand All @@ -41,7 +41,7 @@ A data structure is a data organization, management, and storage format that is
<tr>
<td>Array</td>
<td>
<a href="/concepts/python/array.md"><code>py</code></a>
<a href="/concepts/python/array.md"><code>py🐍</code></a>
<a href="/concepts/typescript/array.md"><code>ts</code></a>
</td>
</tr>
Expand All @@ -58,7 +58,7 @@ A data structure is a data organization, management, and storage format that is
<tr>
<td>Stack</td>
<td>
<a href="/concepts/python/stack.md"><code>py</code></a>
<a href="/concepts/python/stack.md"><code>py🐍</code></a>
<a href="/concepts/typescript/stack.md"><code>ts</code></a>
</td>
</tr>
Expand Down
18 changes: 14 additions & 4 deletions collections/advent-of-code-2022/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,30 @@
<td>Day 24 (!)</td>
<td><a href="https://adventofcode.com/2022/day/24">Link</a></td>
<td>
<a href="../../problems/aoc2022day24/src/main/solution1.cpp"><code>cpp</code></a>
<a href="../../problems/aoc2022day24/src/main/solution1.cpp"><code>cpp🐀</code></a>
</td>
<td>
<a href="../../problems/aoc2022day24/src/main/solution1.cpp"><code>cpp</code></a>
<a href="../../problems/aoc2022day24/src/main/solution1.cpp"><code>cpp🐀</code></a>
</td>
</tr>
<tr>
<td>Day 2</td>
<td><a href="https://adventofcode.com/2022/day/1">Link</a></td>
<td>
<a href="../../problems/aoc2022day2/src/main/solution1.cpp"><code>cpp🐀</code></a>
</td>
<td>
<a href="../../problems/aoc2022day2/src/main/solution1.cpp"><code>cpp🐀</code></a>
</td>
</tr>
<tr>
<td>Day 1</td>
<td><a href="https://adventofcode.com/2022/day/1">Link</a></td>
<td>
<a href="../../problems/aoc2022day1/src/main/solution1.cpp"><code>cpp</code></a>
<a href="../../problems/aoc2022day1/src/main/solution1.cpp"><code>cpp 🐀</code></a>
</td>
<td>
<a href="../../problems/aoc2022day1/src/main/solution2.cpp"><code>cpp</code></a>
<a href="../../problems/aoc2022day1/src/main/solution2.cpp"><code>cpp 🐀</code></a>
</td>
</tr>
</tbody>
Expand Down
1 change: 1 addition & 0 deletions problems/aoc2022day2/.gitginore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
solution
10 changes: 10 additions & 0 deletions problems/aoc2022day2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# AoC Problem

## Usage

Run program with an example

```
bazel run src/main:solution1 `pwd`/data/input1.txt
bazel run src/main:solution2 `pwd`/data/input1.txt
```
3 changes: 3 additions & 0 deletions problems/aoc2022day2/data/input0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
A Y
B X
C Z
Loading