Timeline for Print a Tabula Recta!
Current License: CC BY-SA 3.0
8 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Sep 18, 2017 at 9:58 | comment | added | Kevin Cruijssen | I know it's been more than a year since you've answered this, but you can still golf a few things: The space at String[]a can be removed; and int s=0;while(s<26){p(s,26);p(0,s++);p(-1,0);} can be for(int s=0;s<26;p(0,s++),p(0,s++))p(s,26);. | |
| Jul 31, 2016 at 14:19 | comment | added | Master_ex | @MH. great tips! saved 9 bytes :) | |
| Jul 31, 2016 at 14:19 | history | edited | Master_ex | CC BY-SA 3.0 | followed MH suggestions |
| Jul 31, 2016 at 13:34 | comment | added | MH. | You can easily shave off some more bytes: System.out.printf("%c", ...) -> System.out.write(...), '\n' -> 10, 'A' -> 65. Note sure the newline/line feed char suggestion is allowed, but ideone output requirement. :) | |
| Jul 30, 2016 at 22:44 | history | edited | Master_ex | CC BY-SA 3.0 | manipulated the existing p() method in order not to use System.out.println(), saved 4 bytes |
| Jul 30, 2016 at 22:16 | history | edited | Master_ex | CC BY-SA 3.0 | changed the p() method and added the for loops in there |
| Jul 30, 2016 at 22:05 | history | edited | Master_ex | CC BY-SA 3.0 | fixed bug |
| Jul 30, 2016 at 21:57 | history | answered | Master_ex | CC BY-SA 3.0 |