I hereby claim:
- I am freemo on github.
- I am freemo (https://keybase.io/freemo) on keybase.
- I have a public key ASCk2DELJdA6Vm5uWDRrGXEGbl2K6ROCtnfN8vtt-U_j6Ao
To claim this, I am signing this object:
| import java.util.*; | |
| public class AstarSearch { | |
| private final Map<Integer, Set<Neighbor>> adjacency; | |
| private final int destination; | |
| private final NavigableSet<Step> pending = new TreeSet<>(); | |
| public AstarSearch(Map<Integer, Set<Neighbor>> adjacency, int source, int destination) { | |
| this.adjacency = adjacency; |
| let dividends y = tail [ quot x z | z <- [1..(floor (sqrt (fromIntegral y)))], x <- [y, z^2], (mod y z) == 0] | |
| let perfect y = sum (dividends y) == y | |
| let perfectlist z = [y | y <-[1..z], perfect y] | |
| perfectlist 4 | |
| [1,6,28,496,8128] |
| git clean -ndX #list files that would be removed | |
| git clean -fdX #Actually remove them |
| git log --graph --full-history --all --color --pretty=format:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s" |
| if [[ "$SHLVL" -eq 1 && ! -o LOGIN && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then | |
| source "${ZDOTDIR:-$HOME}/.zprofile" | |
| fi |
| /** | |
| * A Hyperassociative Map is a new type of algorithm that organizes an arbitrary | |
| * graph of interconnected nodes according to its associations to other nodes. | |
| * Once a new Hyperassociative Map has been associated and aligned, nodes that | |
| * are most closely associated will be closest to each other. | |
| * For more info, please see the | |
| * <a href ="http://wiki.syncleus.com/index.php/dANN:Hyperassociative_Map"> | |
| * Hyperassociative-Map dANN Wiki page</a>. | |
| * @author Jeffrey Phillips Freeman | |
| * @param <G> The graph type |
I hereby claim:
To claim this, I am signing this object:
| git log --author=Freeman --format="%Cgreen%ci%Creset %s%Creset" |
| mvn -Dmaven.test.failure.ignore=true clean org.jacoco:jacoco-maven-plugin:prepare-agent test jacoco:report verify sonar:sonar |
| import org.apache.commons.lang3.StringUtils; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public final class StringSimilarityUtils { | |
| private StringSimilarityUtils() { | |
| throw new IllegalStateException("Should not be able to instantiate this class"); | |
| } |