Question: 
Write a function to check if two lists of tuples are identical or not.


Model's Code:
def check_identical(list1, list2):
    return sorted(list1) == sorted(list2)



Sample Correct Code:
def check_identical(test_list1, test_list2):
  res = test_list1 == test_list2
  return (res) 


Asserts:
assert check_identical([(10, 4), (2, 5)], [(10, 4), (2, 5)]) == True
assert check_identical([(1, 2), (3, 7)], [(12, 14), (12, 45)]) == False
assert check_identical([(2, 14), (12, 25)], [(2, 14), (12, 25)]) == True


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

Test 811 of 974: 618/811 (76.20221948212084%): success