Code RoomAbsolute value returns negative
HardPrep Room Coding #1685

Absolute value returns negative

Code reviewCode quality & reviewSenior–Staff~25 min

Review this C++ helper that returns the absolute value of a 32-bit int.

What a strong answer looks like

Separate real bugs from style. Rank issues by severity, point at the root cause rather than the symptom, and suggest a concrete fix, specific and kind.

0:00 of about 25 min
Mark a line and say what kind of problem it is.0 findings
1int32_t myAbs(int32_t x) {
2 if (x < 0) {
3 return -x;
4 }
5 return x;
6}
Which questions mattered is sealed until you submit. Telling you now would just be handing over the edge cases.