All Questions
5 questions
2
votes
3
answers
204
views
Eliminating combinations based on user input
I am stuck with this particular problem. To give context to the problem, I am developing a mobile app which helps with loading dangerous goods onto a truck. Ignore the size and weight of the dangerous ...
0
votes
1
answer
124
views
how to store the data for function f(time,length)
I have a function which has discrete time step ,discrete length from origin . These two give height of the function. For example at time 1.2sec , and length 5.5cm from origin height is 10cm. The step ...
4
votes
3
answers
3k
views
What is the most effective algorithm to evenly distribute n points on a 2 dimensional array so they are as separated as possible?
I am trying to code a game which currently uses a matrix ( that I am calling a map). On this map are islands which can be generated n times. The purpose of the algorithm is to distribute the islands ...
-1
votes
2
answers
244
views
Identifying similar customer data [duplicate]
I have a large database of customers. There's a need to identify customers who have two or more customer IDs.
This comes mostly from people at the front-desk creating new customers instead of ...
1
vote
2
answers
4k
views
Radix exchange sort implementation?
I need a little help understanding the implementation of radix exchange sort algorithm.
Radix exchange (I don't know if it's the exact name in english based literature) is a lot similar to quicksort, ...