diff --git a/problems/719/jeremymanning.md b/problems/719/jeremymanning.md new file mode 100644 index 0000000..e3a34ae --- /dev/null +++ b/problems/719/jeremymanning.md @@ -0,0 +1,11 @@ +# [Problem 719: Find K-th Smallest Pair Distance](https://leetcode.com/problems/find-k-th-smallest-pair-distance/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! + ... +```