Given a string of digits, you should replace any digit below 5 with '0' and any digit 5 and above with '1'. Return the resulting string.
Note: input will never be an empty string
def fake_bin(s)
s.tr('01234', '0').tr('56789', '1')
end
def fake_bin(s)
s.tr('1-9', '00001')
end