Timeline for Draw diagonal lines of text
Current License: CC BY-SA 4.0
12 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Nov 30, 2022 at 11:40 | history | edited | Kevin Cruijssen | CC BY-SA 4.0 |
added 368 characters in body
|
| Jun 17, 2020 at 9:04 | history | edited | Community Bot |
Commonmark migration
|
|
| Jun 28, 2018 at 7:21 | history | edited | Kevin Cruijssen | CC BY-SA 4.0 |
Updated explanation and post format
|
| Aug 14, 2017 at 14:47 | comment | added | Kevin Cruijssen | @CarlosAlejo It's been a while, but I've just used multiple lines now with an empty line to break the while (and golfed 7 bytes at the same time). Saw it being used in one of Neil's answers, and I now see ASCII-only suggested the same thing (somehow missed that comment). | |
| Aug 14, 2017 at 14:36 | history | edited | Kevin Cruijssen | CC BY-SA 3.0 |
Now that I know how to loop over a list, I've been able to golf it by 7 bytes.
|
| Jul 27, 2017 at 2:36 | comment | added | ASCII-only | IDK, the method I usually use is just strings + empty string at the end, if any are multiline then input as a python array | |
| Jun 30, 2017 at 11:54 | history | edited | Kevin Cruijssen | CC BY-SA 3.0 |
I knew I was forgetting something.. Added code-page to bytes
|
| Jun 30, 2017 at 10:49 | history | edited | Kevin Cruijssen | CC BY-SA 3.0 |
Changed explanation and added Charcoal wiki link to header
|
| Jun 30, 2017 at 10:41 | comment | added | Kevin Cruijssen | @CarlosAlejo I indeed came across your answer when I was looking for inspiration on existing Charcoal answers. :) | |
| Jun 30, 2017 at 10:34 | comment | added | Charlie | At least, nobody complained when I used that trick here. :-) | |
| Jun 30, 2017 at 10:30 | comment | added | Charlie |
When the challenge needs a single input consisting of an array, Charcoal fails as it splits the input string taking every single word as a separate input. But in Charcoal the θ variable represents the first input, so I just assign the test input to that variable in the header and then write the rest of the code, so you can get rid of the α variable and iterate over the splitted items of θ. Try it online! (Non-competing due to leading spaces.)
|
|
| Jun 30, 2017 at 9:32 | history | answered | Kevin Cruijssen | CC BY-SA 3.0 |