An algorithm is a sequence of well-defined steps that defines an abstract solution to a problem. Use this tag when your issue is related to algorithm design.
25
votes
6answers
489 views
+50
A* Admissible Heuristic for die rolling on grid
I need some help finding a good heuristic for the following problem:
You are given an R-by-C grid and a six-sided die. Let start and
end be two distinct cells on this grid. Find a path from ...
5
votes
5answers
221 views
+150
Spread objects evenly over multiple collections
The scenario is that there are n objects, of different sizes, unevenly spread over m buckets. The size of a bucket is the sum of all of the object sizes that it contains. It now happens that the sizes ...
1
vote
1answer
69 views
+500
Eliminating sequences in a message
I have an odd communications channel, and I need to detect errors as well as eliminate certain sequences in the channel.
Each message is 12 bits long, split into 4 nibbles. I need to extract at least ...