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
1.5k posts
 
50%
+0 −0
Sandbox Mediocre pop count [FINALIZED]

posted 1y ago by trichoplax‭  ·  edited 1y ago by trichoplax‭

50%
+0 −0
Sandbox Just the vowels please [FINALIZED]

posted 1y ago by trichoplax‭  ·  edited 1y ago by trichoplax‭

50%
+0 −0
Q&A Tips for [fastest-code] in Python

If you're not required to use the standard cpython implementation of python, you can usually get a significant speed increase by running your code with PyPy.

posted 1y ago by trichoplax‭

Answer
50%
+0 −0
Sandbox Circle of text characters [FINALIZED]

posted 1y ago by trichoplax‭  ·  edited 1y ago by trichoplax‭

50%
+0 −0
Sandbox Connect the corners without 4 in a row [FINALIZED]

posted 1y ago by trichoplax‭  ·  edited 1y ago by trichoplax‭

50%
+0 −0
Challenges The holeyest base

Ruby, 77 bytes ->x{(2..16).max_by{x.to_s(_1).chars.sum{|y|"".bytes[y.hex]}}} Attempt This Online!

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

Answer
50%
+0 −0
Challenges Digit Sum Integer Sequence (working title)

Python 3, 183 181 175 bytes def f(a,b): c=a;a=str(a) for i in range(b): y=0;z=9 for j in range(len(a)): if y<int(a[j]):y=int(a[j]) if z>int(a[j]):z=int(a[j]) c=int(a)+...

posted 2y ago by General Sebast1an‭  ·  edited 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Meta Suggestions for the new header banner/background

Binary and code plastered a lot One of the more generic ways of adding design to a code challenge site. The binary digits can be plastered around the header in a way that it looks cryptic. But bin...

posted 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges "Hello, {name}!"

PHP, 55 27 21 bytes Hello, <?=$argv[1]?>! Try it online! Golfed 28 bytes thanks to my Software CD post. Golfed 6 bytes thanks to @Shaggy's advice.

posted 2y ago by General Sebast1an‭  ·  edited 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges 1, 2, Fizz, 4, Buzz!

PHP, 114 bytes <?php for($i=1;$i<101;$i++){if($i%3!=0&$i%5!=0){echo$i;}if($i%3==0){echo"Fizz";}if($i%5==0){echo"Buzz";}echo"\n";} Try it online! As someone who doesn't code much in...

posted 2y ago by General Sebast1an‭  ·  edited 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges Evens or Odds - you know this one

PHP, 36 bytes <?php $x=(int)fgets(STDIN);echo$x%2; Try it online! Outputs 1 if odd and 0 if even.

posted 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges A number adder, not a death adder

Rockstar, 40 bytes listen to N say "listen to N say N-0+"+N Which outputs P2, where X is the input from P1: listen to N say N-0+X Try it here (Code will need to be pasted in)

posted 2y ago by Shaggy‭

Answer
50%
+0 −0
Challenges Getting perfect squares, differently

PHP, 57 bytes <?php $x=0;$y=1;while(1){echo(string)($x+=$y)." ";$y+=2;} Try it online! PHP's a nice language, I tell ya.

posted 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges Expand a polynomial

Haskell, 45 bytes foldl(\a b->zipWith((-).(*b))(0:a)$a++[0])[1] Try it online! Uses the "highest power first" convention. Sometimes multiplies the polynomial by $(-1)$.

posted 2y ago by Hakerh400‭

Answer
50%
+0 −0
Q&A Tips in golfing using PHP

Set arrays without array() In a few occasions, setting an array using array() can be a bit costly. Thankfully, you can assign an array like how to assign a Python list. <?php $a=["Hello","Ma...

posted 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges Expand a polynomial

JavaScript (Node.js), 58 bytes ([x,...r],y)=>x?[0,...y=f(r)].map((v,i)=>v-x*(y[i]|0)):[1] Try it online!

posted 2y ago by Moshi‭

Answer
50%
+0 −0
Challenges "Hello, World!"

shortC, 16 bytes AJ"Hello, World! Try it online!

posted 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges Caesar shift cipher

Haskell, 74 bytes a=ord 'a' n!c|isLetter c=chr((rem((ord c -a)+n) 26)+a)|True=c f n=map (n!) Try it online!

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

Answer
50%
+0 −0
Challenges Word Count Tool

Haskell, 47 bytes l=length f s=(l(words s),l s,l$filter(/= ' ')s) Try it online!

posted 2y ago by carmysilna‭

Answer
50%
+0 −0
Q&A Tips for golfing in Python

| == or This bitwise operator can sometimes be used as the replacement for or. a=-2;b=3 if(a>0)|(b>0):print(a+b) Try it online!

posted 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges Obligatory Quine Challenge

shortC, 38 bytes Bs){Rs="Bs){Rs=%c%s%c,34,s,34",34,s,34 Try it online! From GeeksForGeeks's C implementation.

posted 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges Truthify an array

shortC, 78 bytes i,j;f(Ix,Iy,I*p){R"[");O;i<x;i++)Oj=0;j<y;j++)*p++&&R"[%d,%d],",i,j);J"\b]");} Try it online! From @Lundin's C (gcc) answer.

posted 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Challenges 99 Shortened Bottles of Beer

Seriously, 1 byte N Try it online! Yep. lmao

posted 2y ago by General Sebast1an‭

Answer
50%
+0 −0
Sandbox A word suggester [FINALIZED]

posted 10mo ago by trichoplax‭  ·  edited 8mo ago by trichoplax‭