79117221

Date: 2024-10-23 09:19:07
Score: 0.5
Natty:
Report link
public record Point(int x, int y) {
    public Point {
        if (x > y) {
            int min = y;
            y = x;
            x = min;
        }
    }
}

Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Andrey Smelik