Create a function that takes a division equation d and checks if it will return a whole number without decimals after dividing.
d
validDivision("6/3") ➞ true validDivision("30/25") ➞ false validDivision("0/3") ➞ true
N/A