I\'ve started Coursera Algorythms course. Practice assignments must be done on Java and they suggest using DrJava as IDE, but it\'s really unconvenient. So I\'d like to use
Incase of Gradle, add the maven repository entry in repositories section of build.gradle as follows:
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/algs4/maven/'
}
}
Add the dependency as follows:
compile group: 'edu.princeton.cs', name: 'algs4', version: '1.0.4'
In case of Maven, add the entry in repositories tag in build.xml, as follows:
org.coursera.algs4
Algs4 lib
https://dl.bintray.com/algs4/maven/
Add the dependency as follows:
edu.princeton.cs
algs4
1.0.4