Given a string of ASCII characters, output the character that is in the middle. If there is no middle character (when the string has an even length), output the ASCII character whose ordinal is the floored average of the two center characters. If the string is empty, an empty string should be output. Test cases: 12345 => 3 Hello => l Hiya => q (empty input) => (empty output) Shortest program in characters wins. (Not bytes.) Leaderboard The Stack Snippet at the bottom of this post generates th...