From cebb4337a9e06207c1be1e9237a06dbae8dc7a81 Mon Sep 17 00:00:00 2001 From: jeremymanning Date: Mon, 12 Aug 2024 01:47:45 +0000 Subject: [PATCH] Creating a template for jeremymanning's solution to problem 703 --- problems/703/jeremymanning.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 problems/703/jeremymanning.md diff --git a/problems/703/jeremymanning.md b/problems/703/jeremymanning.md new file mode 100644 index 0000000..6c60490 --- /dev/null +++ b/problems/703/jeremymanning.md @@ -0,0 +1,11 @@ +# [Problem 703: Kth Largest Element in a Stream](https://leetcode.com/problems/kth-largest-element-in-a-stream/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! + ... +```