Tagged Questions
2
votes
5answers
271 views
Performance: Divide group of numbers into two groups of which the sums are equal
I have a piece of code that divides a group of numbers into two groups of numbers of which the sums are equal.
I created this because of a StackOverflow question: ...
2
votes
3answers
1k views
Base-36 encoding of a byte array
After posting a question about Alphanumeric Hash generation on StackOverflow, the most helpful answer was to change the conversion method from pulling 5-bit chunks of a binary hash value, to instead ...
3
votes
1answer
341 views
speeding up an algorithm that find patterns in a growing collection
I want to find a way to speed up this code.
if you look at the condition of If calculated Then in the code below, this is what slowing down the code.
While the code provided seem fast with Const ...