Commit message (Expand) | Author | Age | Files | Lines | |||||
---|---|---|---|---|---|---|---|---|---|
* | ranger.__init__, ranger.1: updated rangers description | hut | 2011-10-08 | 2 | -6/+6 | ||||
* | Updated man page | hut | 2011-10-08 | 2 | -24/+12 | ||||
* | ranger.1: added doc for --dont-copy-config | hut | 2011-10-08 | 2 | -9/+7 | ||||
* | Write "ranger" with a lowercase "r" | hut | 2011-10-08 | 2 | -4/+4 | ||||
* | updated manpage and config_examples/rc.conf | hut | 2011-10-08 | 2 | -1/+7 | ||||
* | general updates | hut | 2011-10-08 | 3 | -31/+25 | ||||
* | manpage: update | hut | 2011-10-05 | 2 | -32/+34 | ||||
* | removed doc/TODO; use "make todo" | hut | 2011-10-05 | 1 | -118/+0 | ||||
* | defaults/commands: added cunmap, punmap, tunmap | hut | 2011-10-05 | 2 | -4import java.util.Arrays;
import java.util.Collections;
import java.util.List;
public class DFS {
static int[][] directions = new int[][]{
{+0, +1}, // Right.
{+1, +0}, // Down.
{+0, -1}, // Left.
{-1, +0}, // Up.
};
static void traverse(int x, int y, char[][] maze, boolean[][] visited) {
// Move in random direction.
List<Integer> l = Arrays.asList(new Integer[]{0, 1, 2, 3});
Collections.shuffle(l);
for (int i: l) {
int curx = x + directions[i][0];
int a6c53cfe81d210c529c6e4c'>new version: 1.3.1, merge with cp+preview branch | hut | 2010-10-12 | 1 | -1/+1 |
|/ | |||||||||
* | Incremented version number to 1.3 (testing) | hut | 2010-09-13 | 1 | -1/+1 | ||||
* | Beware of low-flying butterflies v1.2.0 | hut | 2010-09-13 | 1 | -1/+1 | ||||
* | chmod | hut | 2010-09-11 | 1 | -0/+0 | ||||
* | Tuned versioning scheme to be more intuitive, back to 1.1.2 | hut | 2010-08-28 | 1 | -1/+1 | ||||
* | Changed version number to 1.2 (testing) to adhere with versioning scheme | hut | 2010-08-28 | 1 | -1/+1 | ||||
* | Changed default config dir to $XDG_CONFIG_HOME/ranger | hut | 2010-08-28 | 2 | -6/+7 | ||||
* | Why did the astrophysicist order three hamburgers? v1.1.2 | hut | 2010-07-12 | 1 | -1/+1 | ||||
* | removed pydoc since it can be generated with "make doc" easily | hut | 2010-06-21 | 46 | -6669/+0 | ||||
* | version = version + 1 v1.1.1 | hut | 2010-06-18 | 4 | -6/+7 | ||||
* | new stable version v1.1.0 | hut | 2010-06-09 | 2 | -3/+3 | ||||
* | updated manpage | hut | 2010-06-09 | 1 | -5/+4 | ||||
* | renamed "--fail-if-run" to the more accurate "--fail-unless-cd" | hut | 2010-06-09 | 1 | -3/+3 | ||||
* | updated pydoc | hut | 2010-06-09 | 18 | -57/+113 | ||||
* | Changed hashbang line to "#!/usr/bin/env python" | hut | 2010-06-09 | 2 | -2/+2 |