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
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 4y ago by Quintec‭

Answer
62%
+3 −1
Challenges Really Cool Numbers

Define a cool number as a number whose proper divisors (all except for the number itself) have an integral mean. Define a really cool number as a number whose divisors (including itself) are all co...

4 answers  ·  posted 5y ago by Quintec‭  ·  last activity 5mo ago by Shaggy‭

Question code-golf math
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 5y ago by Quintec‭

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

Python 3, 3 bytes bin Try it online!

posted 5y 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 5y ago by Quintec‭  ·  edited 5y ago by Shaggy‭

Answer
60%
+1 −0
Sandbox The Camelot Wheel [FINALIZED]

Given a musical key, output its number and letter on the Camelot Wheel (shown below). Input A musical key. Format is flexible - you may take in a string, an array of [note, sharp/flat/none, maj...

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

60%
+1 −0
Sandbox Point Game KOTH

It's about time we have something other than code golf! KOTH time! A small simple game to get things started. Rules/Procedure Everyone starts each bracket with 100 in-game points. In each round ...

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

60%
+1 −0
Challenges Tile pyramids on top of each other!

Python 2, 57 bytes a,x=1,input() exec'print" "*(x-a)+"/"*a+"\\\\"*a;a+=1;'*x Prints it out line by line Try it online!

posted 6y ago by Quintec‭  ·  edited 6y 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 5y ago by Quintec‭  ·  edited 5y 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 5y ago by Quintec‭  ·  edited 5y ago by Quintec‭

Answer
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 3y 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 3y ago by Quintec‭

Answer
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 5y ago by Quintec‭

Answer