Timeline for Triangulating Text
Current License: CC BY-SA 3.0
6 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Jun 17, 2020 at 9:04 | history | edited | Community Bot |
Commonmark migration
|
|
| Aug 9, 2016 at 21:38 | comment | added | user18932 | I was going through old answers when I found this one: "write a program or function" which I didn't realize at first. Stripping out the class stuff saved space. I made it into a proper function and found a few more bytes to shave off. | |
| Aug 9, 2016 at 21:37 | history | edited | user18932 | CC BY-SA 3.0 |
added 1487 characters in body
|
| Dec 11, 2015 at 18:22 | comment | added | user18932 |
import static System.out; is 25 bytes, and System. is 7 bytes. It is used three times, and 21 < 25 so it would actually increase the size by 4 bytes. Good lead, though, static imports can save space and not everyone knows about them.
|
|
| Dec 11, 2015 at 17:43 | comment | added | randers | You could probably statically import System.out to save some bytes. | |
| Dec 2, 2015 at 1:46 | history | answered | user18932 | CC BY-SA 3.0 |