aoc_utils 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aoc_utils.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4670d22399c334352f749fb796e8c716c744f61f9f2e72bf5b29f42c8bfe5085
|
4
|
+
data.tar.gz: 3aae281d8b3dc3f79d9ddf7a5aec236ddeb4e32b5c4dce69d703b8ed0ff1d489
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ebf25e5a9fd9456e7e6a31d7c97a1b956fecf654252639cf8ce266fe01c4d1d58ef81740145a03f387779e97802069f26ee42ea0a435af22b419bbe1f815883
|
7
|
+
data.tar.gz: 852c5342561f289945ec55039ed0ea236fab3797e9cb3f6223f0cdb9fa82cca8d17cdd5feece379efbdd7acce0d8fc25450b7a0eba894f88ffa76a32b882f1bc
|
data/lib/aoc_utils.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# Desc: Utility functions for Advent of Code problems
|
2
|
-
|
2
|
+
module AocUtils
|
3
3
|
# extracts all integers from the specified file
|
4
4
|
# @param filename [String] the name of the file to read from
|
5
5
|
# @param other_characters [Array<String>] will save the first non integer character in the line for further usage
|