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 »

Posts by Quintec‭

63 posts
40%
+0 −1
Meta How should we handle incorrect answers?

Do nothing It's wrong but well intentioned. The best we can do is leave a comment saying why its wrong.

posted 1y ago by Quintec‭

Answer
40%
+0 −1
Meta How should we handle incorrect answers?

Lock it Locking a post disallows edits, comments and votes. I am not sure if it allows the original poster to edit or not, but this would be one way to preserve the answer while preventing interac...

posted 1y ago by Quintec‭

Answer
71%
+3 −0
Meta How should we handle incorrect answers?

Recently a flag came to my attention on this post: https://codegolf.codidact.com/posts/280372/281943#answer-281943 It is a well-intentioned answer to the challenge, but unfortunately it is wrong, ...

4 answers  ·  posted 1y ago by Quintec‭  ·  last activity 1y ago by Moshi‭

62%
+3 −1
Meta Under which condition is a function that takes arguments other than those specified by the challenge by itself a valid solution to a challenge?

What you said a function is a valid solution to a challenge if and only if it can be called with no more than the specified input of the task This sounds reasonable to me. If you want to make...

posted 2y ago by Quintec‭

Answer
66%
+2 −0
Challenges Can you give me half?

Japt, 1 byte ½ Test it Jelly, Vyxal, 1 byte . Try it online! Yeah, golf langs still kind of kill this challenge.

posted 2y ago by Quintec‭

Answer
71%
+3 −0
Challenges Find the IP address class

Japt, 26 25 bytes ;Bg4mUqL În10,2 ùT8 qT Îl Try it Long and unwieldy, I'm rusty. Looks at the first 0 in the bitstring of the first octet.

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

Answer
81%
+7 −0
Meta New solution to same challenge in same language: Change existing answer or add new one?

Make a new post If they are completely different solutions, I would say they should be judged separately.

posted 2y ago by Quintec‭

Answer
71%
+3 −0
Q&A Tips for golfing in Java

Use higher versions of Java Seriously, it's crazy what sort of features have been added since Java 8. I hardly recognize the language anymore... Examples: Constructing Lists Before, you had to ...

posted 2y ago by Quintec‭

Answer
60%
+1 −0
Meta Reactions on Code Golf Codidact

New reactions are up "Works for me" is gone, "Outdated" is now invalid, and "Dangerous" has stayed the same.

posted 2y ago by Quintec‭

Answer
42%
+1 −2
Meta Reactions on Code Golf Codidact

Interesting! / Cool! / Wow! Any of these names would work, I think. This would be the dark green reaction in place of "works for me". Intended to be used for answers that are extra unique/impressi...

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

Answer
77%
+5 −0
Meta Reactions on Code Golf Codidact

Reactions were just released! See the main meta post here for the details. Currently, the default reactions look like this: Now, I would argue that none of these fit for Code Golf - so what rea...

4 answers  ·  posted 2y ago by Quintec‭  ·  last activity 2y ago by Lundin‭

Question discussion
66%
+2 −0
Challenges Expand a polynomial

Japt -Q, 15 12 bytes à üÊËx_×*JpE -3 bytes thanks to @Shaggy Uses Vieta's. Try it

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

Answer
77%
+5 −0
Meta Default Rules: Code Golf I/O

You may modify the input in-place If a function takes an input a, it is acceptable that a contains the intended output after executing instead of other forms of output. Note that this means a must...

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

Answer
60%
+1 −0
Challenges Make my value binary

Python 3, 3 bytes bin Try it online!

posted 2y ago by Quintec‭

Answer
50%
+1 −1
Challenges Compute the determinant

Python 3, 29 bytes import numpy numpy.linalg.det Yeah, this is really boring, but I'm curious if this can be beat in Python. Try it online!

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

Answer
66%
+2 −0
Challenges My house is destroyed! Can you make me one?

Canvas, 9 7 bytes #*⌐⤢n↔n -2 bytes thanks to @Razetime Uh I don't really know how to use Canvas - what I think this does is create the vertical wall, then half the horizontal one, then concatn...

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

Answer
77%
+5 −0
Q&A What's a code bowling challenge?

It's the opposite of code golf. Code bowling is essentially a challenge where you try to write the longest code possible, as opposed to the shortest code. Now, this format comes with many issues, ...

posted 3y ago by Quintec‭

Answer
60%
+1 −0
Challenges Guess the language! (Cops' Thread)

Canvas, cracked by Shaggy, 129 bytes /bin/bash > echo "Cops and Robbers"; #Testing, testing 1 2 3 Segmentation Fault > echp "Cops and Robbers"; #Huh? Cops and Robbers This version of ...

posted 3y ago by Quintec‭  ·  edited 2y ago by Shaggy‭

Answer
66%
+2 −0
Challenges Three Number Monte

The "Uppers" def oneup(data, history): if len(history) > 0: prev = history[-1] if prev[2] > 1: better = [prev[0] + 1, prev[1] + 1, prev[2] - 2] elif prev[1] > 1: better...

posted 3y ago by Quintec‭

Answer
71%
+3 −0
Challenges Three Number Monte

The Rules In this game, each round, every player faces off against every other player in a round robin format. In each match, players pick 3 positive integers that sum to 360. Let's say player 1 p...

2 answers  ·  posted 3y ago by Quintec‭  ·  last activity 3y ago by Moshi‭

75%
+4 −0
Meta Default Rules: Random

Every outcome must be possible For example, if the challenge requires a random number from 1-5, all 5 numbers must be possible. It does not need to be uniformly random (unless otherwise specified)...

posted 3y ago by Quintec‭  ·  edited 3y ago by Quintec‭

Answer
66%
+2 −0
Meta Default Rules: Random

What is random defined as on this site? How are answers allowed to handle random chance?

2 answers  ·  posted 3y ago by Quintec‭  ·  last activity 3y ago by Quintec‭

Question default-rules
25%
+0 −4
Meta Default Rules: Flags and Other Compile-Time Options

IF flags take arguments, those arguments count for the code length For example, in Japt, -F"string" is a flag that prints "string" if the output is falsy - in my opinion this should add 6 bytes on...

posted 3y ago by Quintec‭

Answer
77%
+5 −0
Meta How do we handle standardizing things?

Update: the meta tag is live, so we can start the posts. I have created a few here with a few sample answers, but the rest is up to the community! Make sure to vote on other answers as well as post...

posted 3y ago by Quintec‭  ·  edited 3y ago by Quintec‭

Answer
80%
+6 −0
Meta Default Rules: Loopholes

Cat Quines Quines that simply output the source code due to some sort of implicit I/O, such as 1 in many languages.

posted 3y ago by Quintec‭

Answer