Activity for trichoplax
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Article | — |
Net or not? [FINALIZED] Now posted: Net or not? Given a [hexomino], indicate whether it is a net of a cube. Input - A 6 by 6 grid containing exactly 6 filled squares. - The 6 filled squares will be in a single edge connected set (a hexomino). - The topmost row and leftmost column will never be empty (the he... (more) |
— | 4 months ago |
Comment | Post #292168 |
As for editing the `undefined` score answer, I haven't made any edit myself because it's not just a different format - the answer is labelled as "not a golfing answer". I don't know whether higher Meta traffic in future might bring a consensus on whether non-competing answers are to be allowed, and w... (more) |
— | 4 months ago |
Comment | Post #292168 |
Thanks for spotting the new evidence - hopefully that helps someone understand the underlying cause(s).
I think that this is rare, as most challenges do not have invalid format answers. However, there may be a problem even when all answers are formatted correctly:
I tried ticking and unticking ... (more) |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Include example image with too much inaccuracy |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Add 32 bit floating point comparison output for final test case |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Clarify wordings |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Remove negative zero from test case inputs |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Add back in animation section now that there is more space |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Make test case images links to full size |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Add test case outputs |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Reduce example implementations to one test case |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Add test cases |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Use consistent variable names between Python and Rust |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Make Python implementation avoid horizontal scroll bars |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Make Rust test cases avoid horizontal scroll bars |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Make Rust implementation avoid horizontal scroll bars |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Add example implementations |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Clarify orthographic |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Make formula more explicit |
— | 4 months ago |
Edit | Post #292103 |
Post edited: Add alternative scoring tag |
— | 4 months ago |
Comment | Post #290328 |
[An upvoted answer on the defaults for I/O Meta post](https://codegolf.codidact.com/posts/282784/282842#answer-282842) suggests general truthy and falsy outputs can be used where the challenge does not explicitly require exactly 2 distinct values. You could suggest a more general default that allows ... (more) |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Link to Wikipedia article on orthographic projection |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Various improvements |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Clarify input variable type requirement |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Explain animation section not necessary to compete |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Make x and y axes flexible |
— | 4 months ago |
Comment | Post #292000 |
When the community grows and there is more conclusive voting, I would like to see those rules that have reached consensus moved to a help page. I agree it's not definitive at present.
Generally I try to make my specifications reasonably clear for most languages, and then if an obscure language wit... (more) |
— | 4 months ago |
Comment | Post #292000 |
The Meta post is deliberately in the form of a list of proposals, so that voting can indicate which ones have community approval. If there are plenty of upvotes and no downvotes I take that as a default rule. If there are very few upvotes, or a mix of up and downvotes then I'm more likely to make a c... (more) |
— | 4 months ago |
Comment | Post #292000 |
I agree that it is arbitrary. The only difference is simply that input as function arguments has support in the form of upvotes, whereas input as a pre-existing variable has support for only being allowed when there is no other alternative.
I don't have a strong opinion on what the rules should be... (more) |
— | 4 months ago |
Comment | Post #292000 |
So the general answer is "yes you can use a library but it will be classed as a different language", but for this challenge specifically I'm not expecting a graphics library to be necessary, or even particularly advantageous. I'm aiming for a graphics challenge that is so reduced that the code can be... (more) |
— | 4 months ago |
Comment | Post #292000 |
Consensus on Meta seems to be that an answer in a language can include the standard library, although the bytes needed for importing it (if any) count towards the score. For other libraries, using them would count as competing in a different language. See [Default Rules: Libraries](https://codegolf.... (more) |
— | 4 months ago |
Comment | Post #292000 |
I'm happy to accept the defaults on Meta: [Default Rules: Code Golf I/O](https://codegolf.codidact.com/posts/282784).
This means taking input as command line arguments, or from STDIN, or as function arguments are all acceptable approaches. I didn't see reading from a text file mentioned there but ... (more) |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Expand initial draft |
— | 4 months ago |
Edit | Post #292000 |
Post edited: Recommend adding a diagram |
— | 4 months ago |
Edit | Post #292000 | Initial revision | — | 4 months ago |
Article | — |
Plain spheres Given a list of spheres, output an image. Produce a greyscale orthographic (parallel projection - no perspective) ray caster, that renders only plain grey spheres with no lighting. Input - A list of spheres, each consisting of: - The coordinates of its centre $(x,y,z)$. - Its radius $r$.... (more) |
— | 4 months ago |
Edit | Post #291933 |
Post edited: Mark as finalized |
— | 5 months ago |
Edit | Post #291939 | Initial revision | — | 5 months ago |
Question | — |
Substring factor Does a positive integer have a substring as a factor? Input - A positive integer. Output - One of 2 distinct values to indicate whether the input has a factor that is a strict substring of its base 10 (decimal) representation. - Only strict substrings count - a string does not count as a str... (more) |
— | 5 months ago |
Edit | Post #291933 |
Post edited: Emphasise difference between subsequence and substring |
— | 5 months ago |
Edit | Post #291930 |
Post edited: Typo |
— | 5 months ago |
Edit | Post #291933 |
Post edited: Clarify example heading |
— | 5 months ago |
Edit | Post #291933 | Initial revision | — | 5 months ago |
Article | — |
Substring factor [FINALIZED] Now posted: Substring factor Does a positive integer have a substring as a factor? Input - A positive integer. Output - One of 2 distinct values to indicate whether the input has a factor that is a strict substring of its base 10 (decimal) representation. - Only strict substrings coun... (more) |
— | 5 months ago |
Edit | Post #291923 |
Post edited: Mark as finalized |
— | 5 months ago |
Edit | Post #291930 | Initial revision | — | 5 months ago |
Question | — |
Most isolated of 3 points Given 3 points, output one that is separated from its nearest neighbour by the largest distance. Input - 3 distinct points (that is, no 2 points are in the same position). - Each point is a pair of positive integers. Output - A single point, as a pair of positive integers. - The distance be... (more) |
— | 5 months ago |
Edit | Post #291923 |
Post edited: Clarify examples |
— | 5 months ago |
Edit | Post #291923 |
Post edited: Add examples |
— | 5 months ago |
Edit | Post #291923 |
Post edited: Remove redundant "valid" |
— | 5 months ago |