Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 642 Bytes

File metadata and controls

20 lines (14 loc) · 642 Bytes

codinggig-java

Java sample code for Coding Gig. It parses a user.json file and prints the reputation of the user with the highest reputation.

You will need to add json-simple to your CLASSPATH. If you're working from a unix-like command line, the following code should work:

export CLASSPATH=".:json-simple-1.1.1.jar"
javac BestRep.java
java BestRep

Acknowledgments

The sample data is from http://photo.stackexchange.com/ , and is shared under the cc-wiki license.

Json Simple is used under the Apache License 2.0.