emory-courses / dsa-java

Data Structures and Algorithms in Java
https://emory.gitbook.io/dsa-java/
42 stars 55 forks source link

[QZ1] Downloading from GitHub #28

Closed MimiOlayeye closed 4 years ago

MimiOlayeye commented 4 years ago

For the testing Excersise for Quiz 1, it states that we should download LongIntergerQuizTest.java.

How do we download directly from Git Hub?

marvinquiet commented 4 years ago

Hi, you can go to the repo and then find the file.

Then click the raw button, it will lead you to the code.

You can choose to either create your own class named LongIntegerQuizTest and paste the content in, or you can try a fancy way to use a command line wget https://raw.githubusercontent.com/emory-courses/dsa-java/master/src/test/java/edu/emory/cs/algebraic/LongIntegerQuizTest.java to get it.

Please let me know if any questions.

MimiOlayeye commented 4 years ago

Thanks!!