Skip to content

Commit 84274e8

Browse files
committed
Update Solution.java
1 parent 9b5a2be commit 84274e8

File tree

1 file changed

+0
-1
lines changed
  • solution/0200-0299/0295.Find Median from Data Stream

1 file changed

+0
-1
lines changed

solution/0200-0299/0295.Find Median from Data Stream/Solution.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ class MedianFinder {
33
private PriorityQueue<Integer> maxQ = new PriorityQueue<>(Collections.reverseOrder());
44

55
public MedianFinder() {
6-
76
}
87

98
public void addNum(int num) {

0 commit comments

Comments
 (0)