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 »
Meta

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

66%
+2 −0
Meta How to best ask about algorithmic problems

This question was of very poor quality and should have been closed. I closed it but someone disagreed, for reasons unknown. I'm not sure if it's an actual algorithm question or just a request for f...

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

Answer
#2: Post edited by user avatar Lundin‭ · 2022-01-04T12:46:07Z (over 2 years ago)
  • This question was of very poor quality and should have been closed. I closed it but someone disagreed, for reasons unknown. I'm not sure if it's an actual algorithm question or just a request for free code. C strings are very specific to that programming language and I'm not sure if it's even meaningful to discuss handling of them in abstract terms.
  • ---
  • > What requirements should be stated?
  • What language, compiler, system etc are you using (when this is relevant).
  • In case a question is about performance then the question might need to define if they are interested in actual run-time execution speed, or theoretical execution speed/number of comparisons ("Big O" etc), or memory consumption etc etc.
  • > Should an implementation language or set of languages be specified?
  • Only if the question is about implementing an algorithm in a certain language. It is not OK to ask to have free code written by unpaid volunteers - it's (arguably) very rude and a violation of our "be nice" Code of Conduct, so the user might get suspended for posting such.
  • A question about how to implement something in a specific language is by definition not a broad algorithm theory question.
  • > Do we care about duplicating external content
  • If some solution already exists we should point them that way. But answers that are nothing more than a mere link to an external resource should be avoided. Such can and should be posted as comments instead. Answers should add something of value to _this_ site.
  • > Is the full implementation of algorithms feasible within the Q&A format?
  • Yes, given that the poster has made an effort themselves and are asking about particular problems they are facing. Code review of complete working code is also on-topic here, use the code review category.
  • > How would a high quality on-topic question about an algorithmic problem look like?
  • Detailed, with some research effort. Writing such questions is hard!
  • Here's one attempt I made at some point: https://cs.stackexchange.com/questions/68214/finding-the-spots-furthest-away-from-bad-data. Not sure if it's a great question but at least someone understood it well enough to give a great answer, after which I realized how to best design the algorithm.
  • This question was of very poor quality and should have been closed. I closed it but someone disagreed, for reasons unknown. I'm not sure if it's an actual algorithm question or just a request for free code. C strings are very specific to that programming language and I'm not sure if it's even meaningful to discuss handling of them in abstract terms.
  • ---
  • > What requirements should be stated?
  • What language, compiler, system etc are you using (when this is relevant).
  • In case a question is about performance then the question might need to define if they are interested in actual run-time execution speed, or theoretical execution speed/number of comparisons ("Big O" etc), or memory consumption etc etc.
  • > Should an implementation language or set of languages be specified?
  • Only if the question is about implementing an algorithm in a certain language. It is not OK to ask to have free code written by unpaid volunteers - it's (arguably) very rude and a violation of our "be nice" Code of Conduct, so the user might get suspended for posting such.
  • A question about how to implement something in a specific language is by definition not a broad algorithm theory question.
  • > Do we care about duplicating external content
  • If some solution already exists we should point them that way; re-inventing the wheel is rarely ever a good idea. But answers that are nothing more than a mere link to an external resource should be avoided. Such can and should be posted as comments instead. Answers should add something of value to _this_ site.
  • > Is the full implementation of algorithms feasible within the Q&A format?
  • Yes, given that the poster has made an effort themselves and are asking about particular problems they are facing. Code review of complete working code is also on-topic here, use the code review category.
  • > How would a high quality on-topic question about an algorithmic problem look like?
  • Detailed, with some research effort. Writing such questions is hard!
  • Here's one attempt I made at some point: https://cs.stackexchange.com/questions/68214/finding-the-spots-furthest-away-from-bad-data. Not sure if it's a great question but at least someone understood it well enough to give a great answer, after which I realized how to best design the algorithm.
#1: Initial revision by user avatar Lundin‭ · 2022-01-04T12:45:00Z (over 2 years ago)
This question was of very poor quality and should have been closed. I closed it but someone disagreed, for reasons unknown. I'm not sure if it's an actual algorithm question or just a request for free code. C strings are very specific to that programming language and I'm not sure if it's even meaningful to discuss handling of them in abstract terms.

---

> What requirements should be stated?

What language, compiler, system etc are you using (when this is relevant). 

In case a question is about performance then the question might need to define if they are interested in actual run-time execution speed, or theoretical execution speed/number of comparisons ("Big O" etc), or memory consumption etc etc.

> Should an implementation language or set of languages be specified? 

Only if the question is about implementing an algorithm in a certain language. It is not OK to ask to have free code written by unpaid volunteers - it's (arguably) very rude and a violation of our "be nice" Code of Conduct, so the user might get suspended for posting such.

A question about how to implement something in a specific language is by definition not a broad algorithm theory question.

> Do we care about duplicating external content

If some solution already exists we should point them that way. But answers that are nothing more than a mere link to an external resource should be avoided. Such can and should be posted as comments instead. Answers should add something of value to _this_ site.

> Is the full implementation of algorithms feasible within the Q&A format?

Yes, given that the poster has made an effort themselves and are asking about particular problems they are facing. Code review of complete working code is also on-topic here, use the code review category.

> How would a high quality on-topic question about an algorithmic problem look like?

Detailed, with some research effort. Writing such questions is hard!

Here's one attempt I made at some point: https://cs.stackexchange.com/questions/68214/finding-the-spots-furthest-away-from-bad-data. Not sure if it's a great question but at least someone understood it well enough to give a great answer, after which I realized how to best design the algorithm.