Timeline for Print a string in as few distinct characters as possible
Current License: CC BY-SA 3.0
4 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Apr 18, 2013 at 6:07 | comment | added | ugoren | @ecatmur, indeed works. Also if(putchar(...))if(putchar(...)){} or if(putchar(putchar(...)+...){}, but still this approach doesn't save a character. | |
| Apr 17, 2013 at 13:19 | comment | added | ecatmur | @ugoren you can fix the evaluation order with if(putchar(...)){}if(putchar(...)){} etc. | |
| Apr 17, 2013 at 9:34 | comment | added | ugoren | Variation with the same length - if(putchar(...)+putchar(...)){} removes ; but adds f (but relies on the unspecified evaluation order). | |
| Apr 17, 2013 at 6:38 | history | answered | Fors | CC BY-SA 3.0 |