Extend your AtCoder
-
Updated
Aug 31, 2020 - TypeScript
Add a description, image, and links to the atcoder topic page so that developers can more easily learn about it.
To associate your repository with the atcoder topic, visit your repo's landing page and select "manage topics."
Description
To run sample tests of problems whose outputs are floating point numbers, we can specify acceptable errors as
oj test --error 0.000001
.I often type as
oj t -e 1e-6
but sometimes typo asoj t -e 1e6
. This mistake makes all tests AC.I want to add a warning for this kind of mistakes.