binary divisible by 3
Write a function that takes a string of binary numbers, separated by commas. It will look like this:
"1100,101,111,1111"
Take that string, parse out the numbers, and return a string, in the same format, that only includes numbers divisible by 3.
The return value for the above string would be:
"1100,1111"