From 16bc9105b6b71ab628a3bf0e8ef81491ecd20f97 Mon Sep 17 00:00:00 2001 From: jeremymanning Date: Wed, 11 Sep 2024 03:11:37 +0000 Subject: [PATCH] Creating a template for jeremymanning's solution to problem 2220 --- problems/2220/jeremymanning.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 problems/2220/jeremymanning.md diff --git a/problems/2220/jeremymanning.md b/problems/2220/jeremymanning.md new file mode 100644 index 0000000..551d48a --- /dev/null +++ b/problems/2220/jeremymanning.md @@ -0,0 +1,11 @@ +# [Problem 2220: Minimum Bit Flips to Convert Number](https://leetcode.com/problems/minimum-bit-flips-to-convert-number/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! + ... +```