Hamiltonian Path
Royalty FreeLanguage
Java
Metrics
API Calls - 108
Avg call duration -
N/A
Permissions
This is not a recognized license.
This allows an algorithm to compose sophisticated functionality
using other algorithms as building blocks
, however it also carries the potential of incurring additional
royalty and usage costs from any algorithm that it calls
.
Run an Example
Input
Output
[
"b",
"a",
"c"
]
Install and Use
Install
Install the Algorithmia CLI client by running:
curl -sSLf https://algorithmia.com/install.sh | sh
Then authenticate by running:
$ algo auth
# When prompted for api endpoint, hit enter
# When prompted for API key, enter your key: YOUR_API_KEY
Use
algo run cloncaric/HamiltonianPath/0.1.1 -d '{
"a": ["b", "c"],
"b": ["a", "c"],
"c": []
}' --timeout 300