Created
December 26, 2015 02:39
-
-
Save paulhoadley/7431cba3ec9760e70639 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.logicsquad.advent; | |
| import java.io.IOException; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.util.List; | |
| import java.util.Map; | |
| import com.google.gson.Gson; | |
| public class Day12 { | |
| private static final String INPUT_FILENAME = "etc/day12.input"; | |
| public static void main(String[] args) throws IOException { | |
| byte[] encoded = Files.readAllBytes(Paths.get(INPUT_FILENAME)); | |
| String string = new String(encoded, "UTF-8"); | |
| Gson gson = new Gson(); | |
| Object json = gson.fromJson(string, Object.class); | |
| System.out.println("Day12.main: sum = " + sumOfNumbers(json)); | |
| } | |
| private static int sumOfNumbers(Object node) { | |
| int result = 0; | |
| if (node instanceof List<?>) { | |
| for (Object o : (List<?>) node) { | |
| result += sumOfNumbers(o); | |
| } | |
| } else if (node instanceof Map<?, ?>) { | |
| for (Object o : ((Map<?, ?>) node).keySet()) { | |
| result += sumOfNumbers(((Map<?, ?>) node).get(o)); | |
| } | |
| } else { | |
| try { | |
| result += Float.parseFloat(node.toString()); | |
| } catch (NumberFormatException e) { | |
| } | |
| } | |
| return result; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment