Comparing values[x]
Given two arguments, the function will compares the two arguments and determines if they are the same.
Sample Code:
def compVal(n1,n2):
// Enter your logic here...
Examples:
Input: 1,2
Output: False
Explanation: 1 is not equal to 2, so return false.
Input: '1',1
Output: True
Explanation: '1' is equal to 1 after being modified to the same data type.