From dfc3e970d22a39663672b369123aada2323e48ef Mon Sep 17 00:00:00 2001 From: Aditi Bansal <142652964+Aditi22Bansal@users.noreply.github.com> Date: Sun, 21 Jul 2024 18:55:52 +0530 Subject: [PATCH] Update 0295-find-median-from-data-stream.md --- .../lc-solutions/0200-0299/0295-find-median-from-data-stream.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsa-solutions/lc-solutions/0200-0299/0295-find-median-from-data-stream.md b/dsa-solutions/lc-solutions/0200-0299/0295-find-median-from-data-stream.md index a87101a3b..58d3a6742 100644 --- a/dsa-solutions/lc-solutions/0200-0299/0295-find-median-from-data-stream.md +++ b/dsa-solutions/lc-solutions/0200-0299/0295-find-median-from-data-stream.md @@ -7,7 +7,7 @@ tags: - Data Structure - C++ - Java -- Python +- Python description: "This document provides a solution to the Median Finder problem, where you need to efficiently find the median of a stream of numbers." ---