We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3b8974 commit 72889a7Copy full SHA for 72889a7
puzzles/solutions/2023/d01/p2.py
@@ -26,7 +26,9 @@ def _convert_digits_names_to_numbers(input_text: str) -> str:
26
27
28
def get_answer(input_text: str):
29
- raise NotImplementedError
+ """Return the calibrations values sum where digits names are replaced with numbers."""
30
+ input_text = _convert_digits_names_to_numbers(input_text)
31
+ return p1.calculate_calibration_values_sum(input_text)
32
33
34
if __name__ == "__main__":
0 commit comments