Activity for Aaron Miller
| Type | On... | Excerpt | Status | Date |
|---|---|---|---|---|
| Comment | Post #283160 |
[Cracked](https://codegolf.codidact.com/posts/283162#answer-283162) (more) |
— | about 5 years ago |
| Edit | Post #283162 | Initial revision | — | about 5 years ago |
| Answer | — |
A: Guess the language! (Robbers' Thread) Cracks Shaggy's answer, [brainfuck], 245 bytes void main(x,y)->{ printf=io.write(z=x-y); printf("+++++++++>---.+[--->++++.+.+++.+[---->++++.[->++++.+++++++++++++.----------.-[--->+-.>-[--->+---.--[--->+-.-------------..+++.+++++++++++++.+."); print "Cops and Robbers"; }... (more) |
— | about 5 years ago |
| Edit | Post #282510 | Initial revision | — | about 5 years ago |
| Answer | — |
A: A number adder, not a death adder Vyxal `Ṫ`, 3 bytes ``` ?\? ``` Try it Online! Outputs `N1?`, which when run with the same flag as P1, will add the two inputs together. Try it Online! (more) |
— | about 5 years ago |
| Edit | Post #282260 |
Post edited: |
— | about 5 years ago |
| Comment | Post #282260 |
@Razetime Thanks, I was able to get an extra solution out of that! (more) |
— | over 5 years ago |
| Edit | Post #282260 |
Post edited: |
— | over 5 years ago |
| Edit | Post #282261 | Initial revision | — | over 5 years ago |
| Answer | — |
A: Create an Alphabet Diamond Vyxal `C`, 8 bytes ``` kA¦ømƛøm ``` Try it Online! Explanation: ``` kA # Push the alphabet ¦ # Prefixes øm # Palindromize list without duplicating middle ƛ # For each: øm # Palindromize without duplicating middle ... (more) |
— | over 5 years ago |
| Edit | Post #282260 | Initial revision | — | over 5 years ago |
| Answer | — |
A: Output 256 in many different ways Vyxal, 20 23 24 solutions Thanks to @Razetime for suggesting using `Π`, allowing for +1 solution. Try them Online! The programs are meant to be run individually, so the `,Ṡ` is just there to output the previous line and clear the stack. You can try any solution indi... (more) |
— | over 5 years ago |
| Edit | Post #282250 | Initial revision | — | over 5 years ago |
| Answer | — |
A: Are they abundant, deficient or perfect? Vyxal `o`, 16 bytes ``` '∆K=;,'∆K ``` Try it Online! Checks all numbers to see if they are perfect, then prints the ones that are, then does the same for abundant and deficient numbers. Explanation: ``` # Implicit input 'n' ' ;, ... (more) |
— | over 5 years ago |
