Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Activity for Aaron Miller‭

Type On... Excerpt Status Date
Comment Post #283160 [Cracked](https://codegolf.codidact.com/posts/283162#answer-283162)
(more)
over 2 years ago
Edit Post #283162 Initial revision over 2 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)
over 2 years ago
Edit Post #282510 Initial revision almost 3 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)
almost 3 years ago
Edit Post #282260 Post edited:
almost 3 years ago
Comment Post #282260 @Razetime Thanks, I was able to get an extra solution out of that!
(more)
almost 3 years ago
Edit Post #282260 Post edited:
almost 3 years ago
Edit Post #282261 Initial revision almost 3 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)
almost 3 years ago
Edit Post #282260 Initial revision almost 3 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 individu...
(more)
almost 3 years ago
Edit Post #282250 Initial revision almost 3 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' ' ;, # Pr...
(more)
almost 3 years ago