Activity for trichoplax
| Type | On... | Excerpt | Status | Date |
|---|---|---|---|---|
| Comment | Post #296653 |
As it happens the site has just been updated a few hours ago. See [Recent feature changes to the Codidact software](https://meta.codidact.com/posts/39539?sort=active). (more) |
— | 7 days ago |
| Comment | Post #296653 |
Yes the site is still working and under active development, and the Code Golf community is active but a little quiet at the moment. More challenges welcome...
There's also a Discord channel (see the link in the right hand panel, or the bottom of the page on mobile). (more) |
— | 7 days ago |
| Comment | Post #296406 |
I suppose technically I should say "I don't know if you want both sides changed or just the right". I really don't feel qualified to guess in this challenge. (more) |
— | about 2 months ago |
| Comment | Post #296406 |
There appears to be a typo in the reduced end result in the "Task" section:
> reduce that result (e.g. `EENWNWESWESW` -> `EENWWESW`)
I haven't made an edit because I don't know if you want the left or right hand side changed. (more) |
— | about 2 months ago |
| Edit | Post #296406 |
Post edited: Typo |
— | about 2 months ago |
| Edit | Post #296007 |
Post edited: Make validation section wording compatible with relative move notation |
— | 2 months ago |
| Edit | Post #296007 |
Post edited: Fix tags and improve title |
— | 2 months ago |
| Edit | Post #296351 |
Post edited: Add missing full stop |
— | 2 months ago |
| Edit | Post #296319 |
Post edited: Wording improvements |
— | 2 months ago |
| Edit | Post #296351 | Initial revision | — | 2 months ago |
| Article | — |
Power of 4 Indicate whether an integer is a power of $4$. Input - A positive integer. - The input will be strictly less than $2^{31}=2,147,483,648$ Output - An indication of whether the input is an integer power of $4$. - Note that this wording includes $1$ as a power of $4$, being $4^0$. - Thi... (more) |
— | 2 months ago |
| Edit | Post #296319 | Initial revision | — | 3 months ago |
| Article | — |
Prime power Indicate whether an integer is a power of a prime. Input - A positive integer. - The input will be strictly less than $2^{31}=2,147,483,648$ Output - An indication of whether the input is an integer power of a prime number. - Note that this wording includes $1$ as a power of a prime (... (more) |
— | 3 months ago |
| Edit | Post #296256 |
Post edited: Mention this would allow a leaderboard with JS disabled |
— | 3 months ago |
| Edit | Post #296256 | Initial revision | — | 3 months ago |
| Answer | — |
A: Slow animated open of leaderboard to avoid misclicks I'd be happy with the approach suggested in the question, but even better would be server side support for a leaderboard, so it is present immediately when the page loads, and there is never a jump in the interface. This would also allow the leaderboard to be displayed for users who browse wit... (more) |
— | 3 months ago |
| Edit | Post #296255 |
Post edited: Mention only beginning needs to be slow |
— | 3 months ago |
| Edit | Post #296255 | Initial revision | — | 3 months ago |
| Question | — |
Slow animated open of leaderboard to avoid misclicks Sometimes I visit a challenge page, and before the automated leaderboard has initialised I try to click "Active" to change the sort order. Just as I start to press the mouse button, the leaderboard finishes initalising and the page jumps as the leaderboard appears instantly, and I click on one of... (more) |
— | 3 months ago |
| Edit | Post #296007 |
Post edited: Suggest more concise notation |
— | 4 months ago |
| Edit | Post #296007 |
Post edited: Remove ambiguity |
— | 4 months ago |
| Comment | Post #296063 |
Welcome to Code Golf Codidact!
It's worth being specific about what is meant by "display". Does this just mean any output (such as displaying on the screen or the return value of a function) or does it mean something more restrictive?
The defaults are described in [Default Rules: Code Golf ... (more) |
— | 5 months ago |
| Comment | Post #295964 |
Sounds useful to catch that in future answers. I've commented under the challenge to suggest it. (more) |
— | 5 months ago |
| Comment | Post #295956 |
Would you be happy to add the test case mentioned in [a comment thread on an answer](https://codegolf.codidact.com/comments/thread/11769#comment-29092)? (more) |
— | 5 months ago |
| Edit | Post #296007 |
Post edited: Typo |
— | 5 months ago |
| Edit | Post #296007 |
Post edited: Mention alternative notation |
— | 5 months ago |
| Comment | Post #295964 |
Does [Revision 4](https://codegolf.codidact.com/posts/295964/history#4) mean that additional test cases would have caught this earlier? Do you have a suggestion of a test case that would help? (more) |
— | 5 months ago |
| Comment | Post #296007 |
I agree it's a higher bar in general (particularly because different people will disagree on what level the algorithm should be analysed at - is a particular example really an O(N) algorithm if it uses a built in which is probably O(N²) in the language implementation?).
For this specific chall... (more) |
— | 5 months ago |
| Edit | Post #296007 |
Post edited: Add image to example answer format |
— | 5 months ago |
| Edit | Post #296007 |
Post edited: Add missing output requirement |
— | 5 months ago |
| Edit | Post #296007 |
Post edited: Typo |
— | 5 months ago |
| Edit | Post #296007 | Initial revision | — | 5 months ago |
| Article | — |
Shortest closed knight's sightseeing tour Find a closed knight's sightseeing tour[^1] of a 61 by 61 board. Shortest wins. Definitions - A square is visible from another square if it is a knight's move away from it. - A closed knight's sightseeing tour is a sequence of distinct squares on a chequerboard that satisfies all of the foll... (more) |
— | 5 months ago |
| Comment | Post #295346 |
Thanks for the feedback. I've added a couple of clarifications. (more) |
— | 5 months ago |
| Edit | Post #295346 |
Post edited: Add clarification |
— | 5 months ago |
| Comment | Post #295967 |
I proposed [empty output for zero](https://codegolf.codidact.com/posts/282784/295346#answer-295346) on Meta as a default rule a few months ago. It currently stands at -1 votes. Anyone reading this, please add comments and up or downvotes there so consensus can be reached.
In this particular ch... (more) |
— | 5 months ago |
| Comment | Post #284951 |
Sounds good. In that case it would be worth editing to say that, since otherwise an explicit requirement for a single argument overrides the defaults. (more) |
— | 5 months ago |
| Edit | Post #295953 |
Post edited: Mark as finalized |
— | 5 months ago |
| Edit | Post #295963 | Initial revision | — | 5 months ago |
| Question | — |
5 by 5 knight's tour string validator The squares of a 5 by 5 chessboard are labelled with the letters A to Y in English reading order: ```txt A B C D E F G H I J K L M N O P Q R S T U V W X Y ``` Determine whether a string is a knight's tour of this board. Input - A string of 25 distinct letters from A to Y inclusive... (more) |
— | 5 months ago |
| Edit | Post #295953 |
Post edited: Remove ambiguity |
— | 5 months ago |
| Edit | Post #295953 |
Post edited: Clarify output |
— | 5 months ago |
| Edit | Post #295953 |
Post edited: More test cases |
— | 5 months ago |
| Edit | Post #295953 |
Post edited: Add test cases |
— | 5 months ago |
| Edit | Post #295956 |
Post edited: Typos |
— | 5 months ago |
| Edit | Post #295953 |
Post edited: Add test case section |
— | 5 months ago |
| Edit | Post #295953 |
Post edited: Change challenge to a decision problem |
— | 5 months ago |
| Edit | Post #295877 |
Post edited: Fine tune Sandbox question |
— | 5 months ago |
| Edit | Post #295953 | Initial revision | — | 5 months ago |
| Article | — |
5 by 5 knight's tour string validator [FINALIZED] Now posted: 5 by 5 knight's tour string validator The squares of a 5 by 5 chessboard are labelled with the letters A to Y in English reading order: ```txt A B C D E F G H I J K L M N O P Q R S T U V W X Y ``` Determine whether a string is a knight's tour of this board. Input... (more) |
— | 5 months ago |
