Binary Addition

Ruby

Implement a function that adds two numbers together and returns their sum in binary. The conversion can be done before, or after the addition.

The binary number returned should be a string.

Create a method called add_binary that accepts two integers.

def add_binary(a,b) end
< >