From a238aeb5bc56c4c4c417bfc3d5aa6f59911d3a17 Mon Sep 17 00:00:00 2001 From: jeremymanning Date: Tue, 3 Sep 2024 00:28:32 +0000 Subject: [PATCH] Creating a template for jeremymanning's solution to problem 1945 --- problems/1945/jeremymanning.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 problems/1945/jeremymanning.md diff --git a/problems/1945/jeremymanning.md b/problems/1945/jeremymanning.md new file mode 100644 index 0000000..0585d16 --- /dev/null +++ b/problems/1945/jeremymanning.md @@ -0,0 +1,11 @@ +# [Problem 1945: Sum of Digits of String After Convert](https://leetcode.com/problems/sum-of-digits-of-string-after-convert/description/?envType=daily-question) + +## Initial thoughts (stream-of-consciousness) + +## Refining the problem, round 2 thoughts + +## Attempted solution(s) +```python +class Solution: # paste your code here! + ... +```