Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author |
user:1234 user:me (yours) |
| Score |
score:3 (3+) score:0 (none) |
| Answers |
answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections |
title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status |
closed:yes duplicate:no migrated:no wiki:no |
| Types |
is:question is:answer |
| Exclude |
-[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with discussion
Search options not deleted
user 123279
The question you're asking is designed to solicit opinions or best-practices on a particular topic, with the goal of reaching community consensus.
0
votes
Sandbox for Proposed Challenges
Color-shift an image
code-golf image-processing
Input
An image. This can be represented in a number of ways, including:
an image object,
a 2D array of pixels,
a 3D array of the color channels of eac …
2
votes
Sandbox for Proposed Challenges
Wait, ASCII was 128 characters all along?
This question was posted.
0
votes
Sandbox for Proposed Challenges
Reduce them to schwa!
(title from the comments on this video)
code-golf string
Challenge
Given a string of printable ASCII characters (0x20 to 0x7E), replace each character in aeiouAEIOU with ə (U+025 …
2
votes
Sandbox for Proposed Challenges
Arrow Chain Reaction
code-golf grid
Challenge
Given a 2D grid of spaces, inactive arrows (lowercase udlr) and one active arrow (uppercase UDLR), start an "arrow chain reaction".
The active arrow move …
0
votes
Sandbox for Proposed Challenges
ALU: addition, subtraction, multiplication, division
code-golf arithmetic
Challenge
Given two integers \$a, b\$ in \$[0, 256)\$ and a number \$c\$ from the set \$\{0, 1, 2, 3\}\$, perform an operation …
1
vote
Sandbox for Proposed Challenges
Find the nth occurrence of a character
code-golf string
Challenge
Given a string s, a character c, and a number n, return the position of the nth occurrence of c in s.
If c does not have an nth occurr …
0
votes
Sandbox for Proposed Challenges
There's a reason hashes aren't short
code-golf hashing
Challenge
Given a string s, return the SHA-256 hash of s. Builtins that solve this exact challenge aren't allowed, but everything else is allowed …
0
votes
Sandbox for Proposed Challenges
Pick and Flip
code-golf array
Challenge
Given an array of integers, perform the Pick and Flip algorithm, which is defined like this:
Set n to 1 (if 1-indexed) or 0 (if 0-indexed).
Set i to the n-th e …