Update README.md

This commit is contained in:
bt3gl 2023-08-08 20:17:28 -07:00 committed by GitHub
parent 93a3d07928
commit ed6bc75d3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,8 @@
* common applications of heap are: sort (heap sort), getting the top-k elements, and finding the kth element.
* in python you can use `heapq.heapify(array)` with `heapq.heappush(array, value)` and `heapq.heappop()`.
<br>
```python