Question: 
Write a function to check if each element of the second tuple is greater than its corresponding index in the first tuple.


Model's Code:
def check_greater(tuple1, tuple2):
    return all(b > a for a, b in zip(tuple1, tuple2))



Sample Correct Code:
def check_greater(test_tup1, test_tup2):
  res = all(x < y for x, y in zip(test_tup1, test_tup2))
  return (res) 


Asserts:
assert check_greater((10, 4, 5), (13, 5, 18)) == True
assert check_greater((1, 2, 3), (2, 1, 4)) == False
assert check_greater((4, 5, 6), (5, 6, 7)) == True


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

Test 695 of 974: 523/695 (75.25179856115109%): success