diff --git a/problems/3217/jeremymanning.md b/problems/3217/jeremymanning.md new file mode 100644 index 0000000..b0a9353 --- /dev/null +++ b/problems/3217/jeremymanning.md @@ -0,0 +1,11 @@ +# [Problem 3217: Delete Nodes From Linked List Present in Array](https://leetcode.com/problems/delete-nodes-from-linked-list-present-in-array/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! + ... +```