Skip to main content

Timeline for Uncollapse digits

Current License: CC BY-SA 3.0

26 events
when toggle format what by license comment
Sep 10, 2020 at 19:13 comment added ceilingcat 95 bytes
Nov 30, 2017 at 21:59 comment added Michael Dorgan :) Kinda fun to see that list of numbers shrink over time. Addictive even. Still, you get the crown for the superior algorithm.
Nov 30, 2017 at 21:54 comment added jxh @MichaelDorgan: Well, you helped quite a bit with it.
Nov 30, 2017 at 21:45 history edited Michael Dorgan CC BY-SA 3.0
added 82 characters in body
Nov 30, 2017 at 21:43 comment added Michael Dorgan Thanks. Mine doesn't touch the xor version above, but I'll take it.
Nov 30, 2017 at 20:17 comment added jxh Lynn showed me: x?y:0x&&y. Even though you evaluate to 1, you are just throwing it away, so you can save a byte.
Nov 22, 2017 at 17:28 history edited Michael Dorgan CC BY-SA 3.0
added 169 characters in body
Nov 22, 2017 at 17:03 comment added Michael Dorgan This is why I had thought of changing the hash - to get rid of that assignment and extra check. I'll make another go of it shortly.
Nov 22, 2017 at 0:08 comment added Michael Dorgan Changing the hash to one that doesn't give \ or \0 as values would save another 3 or 4 bytes too due to removal of 0 check and escape, at cost of up to 2 more chars to check against.
Nov 21, 2017 at 23:05 history edited Michael Dorgan CC BY-SA 3.0
Implemented suggestions.
Nov 21, 2017 at 22:59 history edited Michael Dorgan CC BY-SA 3.0
Implemented suggestions.
Nov 21, 2017 at 22:47 comment added Michael Dorgan Ah, the printf trick I saw below plus removal of a couple parenthesis and braces. Master level code golf enabled :)
Nov 21, 2017 at 22:21 comment added gastropner 109 bytes c,h=0;f(char*s){while(c=*s++)putchar(c),h=h%10816*104+c%27,c=h%3817,printf(" "+!(c&&strchr("&;@X\\ru{",c)));}
Nov 21, 2017 at 20:17 history edited Michael Dorgan CC BY-SA 3.0
deleted 26 characters in body
Nov 21, 2017 at 20:12 history edited Michael Dorgan CC BY-SA 3.0
deleted 26 characters in body
Nov 21, 2017 at 20:03 history edited Michael Dorgan CC BY-SA 3.0
added 849 characters in body
Nov 21, 2017 at 18:19 history edited Michael Dorgan CC BY-SA 3.0
2 more bytes off
Nov 21, 2017 at 9:11 comment added Tom Carpenter A bit ugly, but 136 bytes by using #define p putchar( instead (note the open parenthesis).
Nov 20, 2017 at 23:41 history edited Michael Dorgan CC BY-SA 3.0
added 73 characters in body
Nov 20, 2017 at 23:26 history edited Michael Dorgan CC BY-SA 3.0
added 55 characters in body
Nov 20, 2017 at 23:16 history edited Michael Dorgan CC BY-SA 3.0
Added URL for runs.
Nov 20, 2017 at 21:12 history edited Michael Dorgan CC BY-SA 3.0
Removed 20 bytes thanks to help!
Nov 20, 2017 at 20:47 comment added Mr. Xcoder 159 bytes by #defineing putchar and removing a pair of unnecessary brackets.
Nov 20, 2017 at 20:17 comment added Michael Dorgan We can macro the putchar and such for a few bytes, but in general, still thinking about a better algorithm if possible.
Nov 20, 2017 at 20:15 history edited Michael Dorgan CC BY-SA 3.0
Golfed a bit
Nov 20, 2017 at 20:07 history answered Michael Dorgan CC BY-SA 3.0