mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-06-30 17:47:25 -04:00
11 lines
180 B
Python
11 lines
180 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
# author: bt3gl
|
|
|
|
import heapq
|
|
|
|
min_heap = [3,1,2]
|
|
heapq.heapify(min_heap)
|
|
|
|
max_heap = [-x for x in min_heap]
|
|
heapq.heapify(max_heap)
|