Create a function that takes in a number as a string n and returns the number without trailing and leading zeros.
3.4000 and 3.04000).000234 and 000230).removeLeadingTrailing("230.000") ➞ "230"
removeLeadingTrailing("00402") ➞ "402"
removeLeadingTrailing("03.1400") ➞ "3.14"
removeLeadingTrailing("30") ➞ "30"
.0 on the end, return the integer value (e.g. return "4" rather than "4.0").0, 0.0, 000, 00.00, etc... return "0".