Search found 1 match

by t.jerabek
Sat Oct 11, 2008 12:00 pm
Forum: Volume 7 (700-799)
Topic: 722 - Lakes
Replies: 10
Views: 9370

Re: 722 - Lakes

I need help pleas.
This is my code:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class Main {

private int[][] field;
private int[][] moves = { { 1, 0 }, { -1, 0 }, { 0, 1 }, { 0, -1 } };
private int moveCount ...

Go to advanced search