Activity for Dionâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #279365 |
Post edited: |
— | about 4 years ago |
Comment | Post #279422 |
How did you find this? :D (more) |
— | about 4 years ago |
Edit | Post #279365 |
Post edited: |
— | about 4 years ago |
Comment | Post #279365 |
@corsaka usually it depends on the language, but i'll clarify that it is fine (more) |
— | about 4 years ago |
Comment | Post #279365 |
@corsaka if you think it is acceptable to change the rules at this point, then I can edit the post so that programs may not HALT on errors (more) |
— | about 4 years ago |
Comment | Post #279365 |
@celtschk fixed, thanks (more) |
— | about 4 years ago |
Edit | Post #279365 |
Post edited: |
— | about 4 years ago |
Edit | Post #279366 | Initial revision | — | about 4 years ago |
Answer | — |
A: Should sandbox posts give rep? Could it be possible to change the amount by which an upvote changes the rep? For example, a sandbox vote could be 1 rep, meaning that if you had a good idea you would still get rep, but it wouldn't influence the total rep too much. (more) |
— | about 4 years ago |
Edit | Post #279365 | Initial revision | — | about 4 years ago |
Question | — |
1, 2, Fizz, 4, Buzz! The task = Output the first 100 elements of the infamous FizzBuzz sequence. How? = The FizzBuzz sequence is the sequence of decimal integers from 1 to 100 inclusive, but: If the integer is divisible both by 3 and 5, output the string `FizzBuzz` Else, if the integer is divisible by 3, o... (more) |
— | about 4 years ago |
Edit | Post #279322 | Initial revision | — | about 4 years ago |
Question | — |
Tile pyramids on top of each other! The task = Given a positive integer as input, output tiled pyramids of this height. How? = Let's say the inputted integer was `n`. From there, we output `n` lines of output, each having: 1. A decreasing indentation of spaces starting with `n-1` spaces and ending with `0` spaces 2. An inc... (more) |
— | about 4 years ago |
Edit | Post #279319 | Initial revision | — | about 4 years ago |
Answer | — |
A: "Hello, World!" [JavaScript (V8)], 28 bytes ``` console.log("Hello, World!") ``` Try it online! (more) |
— | about 4 years ago |