diff --git a/problems/problem2.md b/problems/problem2.md index 481422b..94b1799 100644 --- a/problems/problem2.md +++ b/problems/problem2.md @@ -52,3 +52,6 @@ A single integer representing the sum of all part numbers adjacent to symbols. In this schematic: - Two numbers (114 and 58) are not part numbers as they are not adjacent to any symbols. - All other numbers adjacent to symbols contribute to the sum, resulting in a total of 4361. + +### Solution +The solution to the problem can be found at [Solution 2]({{ site.baseurl }}/solutions/solution2). \ No newline at end of file diff --git a/solutions/solution2.md b/solutions/solution2.md index 3bb2ce7..ae15bb0 100644 --- a/solutions/solution2.md +++ b/solutions/solution2.md @@ -1,8 +1,8 @@ --- layout : post -permalink : solutions/solution1 -permalink_name : /Solution 1 -title : Solution Of The Week 1 +permalink : solutions/solution2 +permalink_name : /Solution 2 +title : Solution Of The Week 2 --- Here is the problem statement for [Problem 2]({{ site.baseurl }}/problems/problem2)