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 lyxal‭

Type On... Excerpt Status Date
Comment Post #283775 Although I had `2J≈[5`
(more)
almost 4 years ago
Comment Post #283775 Dang it I was just about to post that!
(more)
almost 4 years ago
Edit Post #283414 Initial revision almost 4 years ago
Answer A: Small integer swapping
Vyxal `o`, 5 bytes ``` $"," ``` Try it Online! I'd say this counts, because `$` is quite literally "swap the top two items on the stack". Explained ``` $"," $ # Swap the top two items, but peek instead of pop ", # pair and output " # pair what remains and output with th...
(more)
almost 4 years ago
Edit Post #283134 Initial revision almost 4 years ago
Answer A: It's Hip to be Square
Vyxal, 2 bytes ``` ∆² ``` Try it Online! Woooooooo built-in elements ftw.
(more)
almost 4 years ago
Edit Post #279368 Post edited:
almost 4 years ago
Edit Post #279166 Post edited:
over 4 years ago
Edit Post #279368 Post edited:
over 4 years ago
Edit Post #279368 Initial revision over 4 years ago
Answer A: 1, 2, Fizz, 4, Buzz!
Vyxal `Hj`, 10 bytes ``` ƛ₍₃₅kF½∑∴ ``` Try it Online! Vyxal has gotten a whole lot better since first posting this. Explained Very simply, this is: for each item in the range `[1, 100]`, create the list `[item % 3 == 0, item % 5 == 0]`, multiply that by `["Fizz",...
(more)
over 4 years ago
Edit Post #279213 Post edited:
over 4 years ago
Edit Post #279154 Post edited:
over 4 years ago
Comment Post #279189 I've asked a meta question regarding whether or not we should import the FAQ questions from SE, which includes a comprehensive definition of a valid quine.
(more)
over 4 years ago
Edit Post #279213 Post edited:
over 4 years ago
Edit Post #279213 Initial revision over 4 years ago
Question Should we import our old policy posts?
Over on codegolf.stackexchange.com, we have numerous meta posts outlining loopholes answers can't break, validity of output/input methods and other rule-type posts. Some examples: https://codegolf.meta.stackexchange.com/q/1061/78850 https://codegolf.meta.stackexchange.com/questions/2447/d...
(more)
over 4 years ago
Edit Post #279190 Post edited:
over 4 years ago
Edit Post #279190 Post edited:
over 4 years ago
Edit Post #279190 Initial revision over 4 years ago
Answer A: Obligatory Quine Challenge
Vyxal/Keg , 8 bytes `:.,`:., Try it online! (Keg) The explanations are the same for both languages, seeing as how Vyxal is heavily based on Keg. Explained `:.,` # Push the string ":.," :., # Duplicate it, print it raw and then print it nice
(more)
over 4 years ago
Edit Post #279166 Post edited:
over 4 years ago
Edit Post #279166 Post edited:
over 4 years ago
Edit Post #279166 Post edited:
over 4 years ago
Edit Post #279166 Post edited:
over 4 years ago
Edit Post #279166 Post edited:
over 4 years ago
Edit Post #279166 Initial revision over 4 years ago
Answer A: Evaluate a single variable polynomial equation
Vyxal, 6, 5, 4 bytes ``` Źe∑ ``` Try it Online! Takes input in the format `coeffs, x` Explained ``` Źe∑ Ź # Generate range [0, len(coeffs)) e # Calculate x [0, len(coeffs) (vectorising) # Multiply the coefficients by the exponated x's. The lists are extended with 0s...
(more)
over 4 years ago
Edit Post #279154 Initial revision over 4 years ago
Answer A: "Hello, World!"
Vyxal, 2 bytes KH This pushes the string "Hello, World!" to the stack and automatically prints it. Also, this is the first answer on the site! Woo!
(more)
over 4 years ago