https://www.hackerrank.com/challenges/grading/problem #include using namespace std; string ltrim(const string &); string rtrim(const string &); /* * Complete the 'gradingStudents' function below. * * The function is expected to return an INTEGER_ARRAY. * The function accepts INTEGER_ARRAY grades as parameter. */ vector gradingStudents(vector grades) { int sNum = grades.size(); vector roundedGrad..