You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project supports the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html). The Gradle wrapper automatically downloads Gradle at the first time it runs, so expect a delay when running the firt command below.
43
+
This project supports the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html). The Gradle wrapper automatically downloads Gradle at the first time it runs, so expect a delay when running the first command below.
44
44
45
45
If you are on Windows, use `gradlew.bat` instead of `./gradlew` below.
46
46
47
47
48
48
Run a single algorithm like this:
49
49
50
50
```
51
-
./gradlew -q run -Palgorithm=<algorithm-subpackage>.<algorithm-class>
51
+
./gradlew run -Palgorithm=<algorithm-subpackage>.<algorithm-class>
52
52
```
53
53
54
54
55
55
Alternatively, you can run a single algorithm specifying the full class name
56
56
```
57
-
./gradlew -q run -Pmain=<algorithm-fully-qualified-class-name>
57
+
./gradlew run -Pmain=<algorithm-fully-qualified-class-name>
0 commit comments