+ 1
If you use assertion, It will not run simply because assertion is disabled by default.
To enable the assertion, -ea or -enableassertions switch of java must be used.
Compile it by:Â javac AssertionExample.java
Run it by:Â java -ea AssertionExample
Try it on your local machine , it won't work on sololearn



