Update python interpreter to 3.14

Recent python update v3.14 adds native max heap operations:

  • heapify_max()
  • heappush_max()
  • heappop_max()
  • heapreplace_max()
  • heappushpop_max()

This will help problem solver use max heap directly.As of today we use min heap with negation to emulate max heap.

Comments (0)