Activity for celtschkâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #279425 |
You can save 7 bytes by replacing `'SIGSEGV'` with `11` (the signal number of SIGSEGV). (more) |
— | over 4 years ago |
Comment | Post #279141 |
Is it intentional that this community is not listed on the [main page?](https://codidact.com/) (I already commented about that on the proposal post, but I guess that was the wrong place for that comment) (more) |
— | over 4 years ago |
Edit | Post #279407 | Initial revision | — | over 4 years ago |
Article | — |
Run-length encode a byte sequence [FINALIZED] Run-length encoding is a simple compression technique which compresses sequences of repeating identical bytes. The encoding rules for this task are as follows: Any sequence of $n$ identical bytes ($3 \leq n \leq 63$) is replaced by a byte with value `n+0xc0` followed by only one copy of that by... (more) |
— | over 4 years ago |
Edit | Post #279383 |
Post edited: Added ungolfed version of the code with explanation in the comments |
— | over 4 years ago |
Edit | Post #279383 | Initial revision | — | over 4 years ago |
Answer | — |
A: 1, 2, Fizz, 4, Buzz! C (gcc), 113 Bytes ``` i;main(){while(i++ / Declare a global int variable. The golfed code omits the type because of the old implicit-int rule, which only generates a warning also in modern gcc. Also note that global variables without initializer are zero-initialized; this is sti... (more) |
— | over 4 years ago |
Comment | Post #279365 |
I'm pretty sure U+0020 is the space, and U+000A is the newline. BTW, what *exactly* does "must not produce an error from start to finish" mean? In particular, do compiler warnings count as errors in this context? (more) |
— | over 4 years ago |