Encode an array of bytes (0–255) into a Base64 string.
solve([77, 97, 110]) → 'TWFu'. Pad with = to a length multiple of 4.
solve([77, 97, 110])
'TWFu'
=
Sample tests