Question: 
Write a function which accepts an arbitrary list and converts it to a heap using heap queue algorithm.


Model's Code:
def raw_heap(lst):
    import heapq
    heapq.heapify(lst)
    return lst



Sample Correct Code:
import heapq as hq
def raw_heap(rawheap):
  hq.heapify(rawheap)
  return rawheap


Asserts:
assert raw_heap([25, 44, 68, 21, 39, 23, 89])==[21, 25, 23, 44, 39, 68, 89]
assert raw_heap([25, 35, 22, 85, 14, 65, 75, 25, 58])== [14, 25, 22, 25, 35, 65, 75, 85, 58]
assert raw_heap([4, 5, 6, 2])==[2, 4, 6, 5]


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 854 of 974: 657/854 (76.93208430913349%): success