ChrisVilches/cpdiff

Comment in codeforces

Closed this issue · 1 comments

10100011111111111111101101010101010101010101000000 is handled as a number, but it cannot be compared because it's too long.

How to deal with this? Ideas:

  • Modify the regex so that it has a character limit, using something like [a-z]{1,6}
  • Use a library for bigint/bigfloat, etc. <--- best idea, but it doesn't need to be a library, since we only need comparison (can be done using strings)

Fixed in 1.0.8