Skip to content

Commit 12c7b60

Browse files
add problem for k-th statistic
Added leetcode 215 as a practice problem
1 parent e65d837 commit 12c7b60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sequences/k-th.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ T order_statistics (std::vector<T> a, unsigned n, unsigned k)
7272
* Finding $K$ smallest elements can be reduced to finding $K$-th element with a linear overhead, as they're exactly the elements that are smaller than $K$-th.
7373
7474
## Practice Problems
75-
75+
- [Leetcode: Kth Largest Element in an Array](https://leetcode.com/problems/kth-largest-element-in-an-array/description/)
7676
- [CODECHEF: Median](https://www.codechef.com/problems/CD1IT1)

0 commit comments

Comments
 (0)