Create a function that takes a single character as an argument and returns the char code of its lowercased / uppercased counterpart.
Given that:
- "A" char code is: 65
- "a" char code is: 97
CounterpartCharCode("A") ➞ 97
CounterpartCharCode("a") ➞ 65