79760226

Date: 2025-09-09 19:46:43
Score: 1
Natty:
Report link

It's just math - that Int.MinSize is a negative number and you're subtracting it. Let's use 32 bit numbers.

Int32.MinValue= -2147483648
Int32.MaxValue= 2147483,647

-1 - (-2147483648) = 2147483,647

You end up precisely with the value of Int.MaxSize, so there is no overflow.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
Posted by: Egor