79837095

Date: 2025-12-03 16:19:11
Score: 1
Natty:
Report link

I quote the code of gpt, as follows:

The fastest way to sum three numbers is to write A+B+C directly. There is no faster way than this.


int sum3(int a, int b, int c) {

    return a + b + c;

}    



Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 学无穷尽