Linked Questions
37 questions linked to/from Guessing a number, but comments concerning
0
votes
1
answer
235
views
Cleaning up 3D bin packing [closed]
This is a follow up question to 3D bin packing in Java
I finished testing my code's result and started cleaning it up.
Could anyone please tell me what I should do or fix to clean up this code more?
...
4
votes
2
answers
193
views
Accelerate the process of filling the quality control table
I'm working on a report of quality control. I've got a table, with all the points of control inside, and each time, when I get a new test result, Excel should fill this table. My code already works, ...
0
votes
1
answer
288
views
Project Euler#18: Maximum Paths I: Brute Forced Depth First Search
Problem:
Data:
...
4
votes
1
answer
130
views
Product of all but one number in a sequence - Follow Up (2)
This code is a improved version of implementation which asked for a review: Product of all but one number in a sequence.
...
4
votes
1
answer
143
views
Word Counter Project
I recently read K&R The C Programming Language and wanted to write a small program to count the occurrence of each word in the input (std-input - I piped a file with all shakespeare pieces in ...
2
votes
1
answer
154
views
Populate the list based on which datacenter code is running on
This is a follow on to : Efficiently detect datacenter based on server hostname and return the full path.
I have a library which is running in different datacenters in production. I have three ...
1
vote
1
answer
168
views
Calculating the prime numbers between two integers
I've wrote this code to calculate the prime numbers between two integers n and m, and I want to optimise it.
...