From a3112198810d6bd5ad6e8940080a1dbdaaee0d25 Mon Sep 17 00:00:00 2001 From: jeremymanning Date: Sat, 27 Jul 2024 03:13:48 +0000 Subject: [PATCH] Creating a template for jeremymanning's solution to problem 2976 --- problems/2976/jeremymanning.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 problems/2976/jeremymanning.md diff --git a/problems/2976/jeremymanning.md b/problems/2976/jeremymanning.md new file mode 100644 index 0000000..28ad36c --- /dev/null +++ b/problems/2976/jeremymanning.md @@ -0,0 +1,11 @@ +# [Problem 2976: Minimum Cost to Convert String I](https://leetcode.com/problems/minimum-cost-to-convert-string-i/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! + ... +```