Update 3_WhyCpp.md

This commit is contained in:
Darren Yao 2020-06-15 12:23:14 -07:00 committed by GitHub
parent 2204cc108e
commit e1ec975fac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -233,4 +233,4 @@ Although both Python and Java receive two times the C++ time limit in USACO, thi
- Python lacks a data structure that keeps its keys in sorted order (the equivalent of `set` in C++), which is required for some silver problems.
- Java lacks features such as `#define`, `typedef`, and `auto` that are present in C++ (which some contestants rely on extensively, see "macros").
- USACO problemsetters don't always test Java solutions (and rarely Python) when setting constraints.
- USACO problemsetters don't always test Java solutions (and rarely Python) when setting constraints. Furthermore it is not guaranteed that there exists a fully working solution in Python.