Activity for trichoplax
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #287261 |
Post edited: Experiment with hiding all sections |
— | about 2 years ago |
Edit | Post #287261 |
Post edited: Hide Terminology and Letter rotation sections, plus tidying |
— | about 2 years ago |
Edit | Post #287261 |
Post edited: Clarity improvements |
— | about 2 years ago |
Edit | Post #287173 |
Post edited: Explicitly allow string input |
— | about 2 years ago |
Comment | Post #287173 |
Looking at the input section I now realise I left it implicit that the input could be a string (since I used Y and Z as digits but didn't explicitly say string). I'll edit to make clear that a string of digits or the usual alternatives (any ordered data structure of characters) is fine as an alternat... (more) |
— | about 2 years ago |
Comment | Post #287173 |
Thanks for catching this. Now edited to fix. (more) |
— | about 2 years ago |
Edit | Post #287173 |
Post edited: Fix incorrect test cases |
— | about 2 years ago |
Edit | Post #287261 |
Post edited: Test case intro wording fix |
— | about 2 years ago |
Edit | Post #287261 |
Post edited: Clarify letters must be English alphabet letters |
— | about 2 years ago |
Edit | Post #287261 |
Post edited: Finish wording and add test cases |
— | about 2 years ago |
Edit | Post #287261 |
Post edited: Fix title |
— | about 2 years ago |
Edit | Post #287261 | Initial revision | — | about 2 years ago |
Article | — |
Pinwheel words [FINALIZED] Now posted: Pinwheel words Given a word that can be rotated by 180 degrees (a half turn) about at least one of its 3 axes and continue to be composed of English alphabet letters, output one of its rotated forms. The 3 rotation types will be given the challenge-specific names clock, mirror, ... (more) |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Make input requirements more lenient |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Update test cases |
— | about 2 years ago |
Comment | Post #287253 |
I appreciate that making the code changes to allow cross-category duplicates may not happen in the short term, but this does seem like the ideal solution long term.
Even without the ability to close as a duplicate (so the sandbox post does not automatically link to the finished challenge), it woul... (more) |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Add sandbox questions |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Add sandbox question |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Clarify output section |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Set minimum grid size |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Add test cases |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Hide terminology and examples, and better define output |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Add todo |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Bring example descriptions outside code blocks to allow wordwrap |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Add missing corner of an example |
— | about 2 years ago |
Edit | Post #287238 |
Post edited: Improve wording and examples |
— | about 2 years ago |
Edit | Post #287238 | Initial revision | — | about 2 years ago |
Article | — |
Arbitrary angle wrapping wordsearch Sandbox - Would you change anything about the test case format? - Are there any more edge cases to add to the test cases? - Should words that use the same grid position more than once be considered present? (Currently I am leaning towards allowing this, which I imagine is the easier approach to im... (more) |
— | about 2 years ago |
Edit | Post #287173 |
Post edited: Typo |
— | about 2 years ago |
Comment | Post #287210 |
Can you save a byte by using `fromCharCode` instead of `fromCodePoint`? (more) |
— | about 2 years ago |
Comment | Post #287207 |
Looks like you've already solved this for yourself though since you've posted 2 answers that both work correctly for all these cases... I'll leave the explanation up in case anyone else bumps into the same confusion I did. (more) |
— | about 2 years ago |
Comment | Post #287207 |
I had this same thought myself after producing the test cases, but I found it was because I was looking at binary strings without leading zeroes, which makes it easy to look at the digit one from the left, instead of five from the right. This causes a problem because the character codes less than 64 ... (more) |
— | about 2 years ago |
Edit | Post #287180 |
Post edited: Mark as finalized |
— | about 2 years ago |
Edit | Post #287207 | Initial revision | — | about 2 years ago |
Question | — |
Lowercase, but not just the letters Given a string of printable ASCII characters, convert them all to lowercase, except not just the letters. ASCII characters that are letters have a bit in their binary representation that is `0` for uppercase, and `1` for lower[]()case. Setting this bit to `1` for a non-letter character that previo... (more) |
— | about 2 years ago |
Edit | Post #287180 |
Post edited: Tidying |
— | about 2 years ago |
Edit | Post #287180 |
Post edited: Make input and output requirements more flexible |
— | about 2 years ago |
Edit | Post #287162 |
Post edited: Mark as finalized |
— | about 2 years ago |
Edit | Post #287199 | Initial revision | — | about 2 years ago |
Question | — |
Mediocre pop count Given a sequence of letters, omit those with the highest or lowest pop count. Terminology The pop count or [population count] of a binary string is the number of `1`s in it. For this challenge, the pop count of a letter is the number of `1`s in its ASCII character code in binary. For exampl... (more) |
— | about 2 years ago |
Edit | Post #287162 |
Post edited: Reformat output section |
— | about 2 years ago |
Edit | Post #287162 |
Post edited: Explicitly allow input and output to be in different formats |
— | about 2 years ago |
Edit | Post #287182 |
Post edited: Add example of mixed but consistent input and output formats |
— | about 2 years ago |
Edit | Post #287182 |
Post edited: Require input and output formats to be consistent between inputs |
— | about 2 years ago |
Comment | Post #287182 |
Unless there's a default on Meta to allow `null` as a substitute for an empty string / empty data structure I'm going to say no.
I want the input and output formats to be as flexible as possible to keep the competition open to as many languages as possible (and so people can explore alternative ap... (more) |
— | about 2 years ago |
Edit | Post #287154 |
Post edited: Add an extra example of a valid circle |
— | about 2 years ago |
Edit | Post #287180 |
Post edited: Tidying |
— | about 2 years ago |
Edit | Post #287162 |
Post edited: Clarify output section |
— | about 2 years ago |
Edit | Post #287182 |
Post edited: Explicitly allow non-string output sequences |
— | about 2 years ago |
Edit | Post #287153 |
Post edited: Settle of input range 2 to 70 to fit in a codeblock without a horizontal scroll bar |
— | about 2 years ago |