Write a function that transforms all letters from [a, m] to 0 and letters from [n, z] to 1 in a string.
convert_binary("house") ➞ "01110"
convert_binary("excLAIM") ➞ "0100000"
convert_binary("moon") ➞ "0111"
Conversion should be case insensitive (see example #2).