Tagged Questions
3
votes
4answers
174 views
Java shortcut: generating an array to change a for loop into a for-each loop
I have considered using this shortcut in my competition programming. I define a function:
private static int[] range(int n) {
int[] ret = new int[n];
for (int i = 0; i < n; i++) {
...
1
vote
10answers
715 views
Running a fastest-algorithm competition
I'd like to run competitions like code golf competitions, but the winner would have the fastest algorithm, not the smallest code.
One fair way to measure speed of an algorithm is to use a neutral ...
1
vote
4answers
734 views
Game AI programming competition framework
Does anyone know of an open source AI programming competition framework( shell)? The target should be 'game aware'.
I'd like it to:
Be written in Java
Have a reliable way to measure/terminate time ...