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 »

Search

Advanced Search Options

To further refine your search, you can use additional qualifiers such as score:>0.5. For example, the search score:>=0.5 created:<1y grammar would return only posts mentioning "grammar" that have a score >= 0.5 and were created less than a year ago.

Further help with searching is available in the help center.

Quick hints: tag:tagname, user:xxx, "exact phrase", post_type:xxx, created:<N{d,w,mo,y}, score:>=0.5

Filters
28 posts
 
60%
+1 −0
Challenges Create a range grid

BQN (CBQN), 10 bytes Anonymous function that takes m on the left and n on the right. {𝕨‿𝕩β₯Šβ†•π•¨Γ—𝕩} ↕𝕨×𝕩 # list of range [0,m*n) 𝕨‿𝕩β₯Š # reshape list to m*n Try it here!

posted 2y ago by snail_‭  ·  edited 2y ago by snail_‭

Answer
60%
+1 −0
Challenges Keyword golfing

BQN, 107 bytes A↩C←A⇐¯π{_𝕣_:@;/βŠπ•©.y?π•—β€ΏβˆŠπ•ŠβŸ¨π•€,β·βŸ©π•π•Žπ”½π•¨π”Ύπ•˜}βˆžΛ™βŒœΛ˜Β¨Β΄Λ`(β€’JsβŽ‰βŠ”βŽŠβŒ½βŒΎβ‰βš‡Β«βˆ˜Β»Β·βˆ§β—‹βˆ¨β‹β’β†‘β†“β‰βˆΎΛœβ₯Šβ‹ˆβ†•βŠ’⍟⊣¬!|≑≒/β‰₯βŸœβ‰ =⊸β‰₯βŠβŠ˜βŠ’β—ΆβŠ‘><βŒŠβŒˆβˆšβΌβ‹†+-Γ—Γ·)β‹„# BQN doesn't have keywords but primitive symbols are reserved. It's ...

posted 2y ago by Razetime‭  ·  edited 2y ago by Razetime‭

Answer
50%
+0 −0
Challenges Evaluate a single variable polynomial equation

BQN, 13 bytes {+Β΄(𝕨⋆↕≠𝕩)×𝕩} { } # fn +Β΄ # sum reduce (𝕨⋆↕≠𝕩) # x^i for each term ×𝕩 # times each coefficient Try it

posted 2y ago by snail_‭  ·  edited 2y ago by snail_‭

Answer