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