Here's my solution, based on the problem being. "Return the difference between the two characters, where no sign is present"

public int Difference(int a, int b){
return Math.abs(a-b);
}...