1234567891011
int convertStringToInt(string test) { if (test.compare('L') == 0) { return 1; } if (test.compare('R') == 0) { return 2; } }