This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.rooksolver; | |
/** | |
* Created by le-doude on 14/06/16. | |
*/ | |
public class Solver { | |
static final byte[][] moves = new byte[64][64]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package arrayexperiment; | |
import org.apache.commons.lang.ArrayUtils; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.HashMap; | |
import java.util.List; | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.*; | |
/** | |
* Created with IntelliJ IDEA. | |
* Author: Edouard | |
*/ | |
public class Dijkstra { | |
public static class Vertex implements Comparable<Vertex> { | |
private final String label; |
NewerOlder