Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created November 30, 2020 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fatosmorina/644e96bba7b36a5617381929ea20d6be to your computer and use it in GitHub Desktop.
Save fatosmorina/644e96bba7b36a5617381929ea20d6be to your computer and use it in GitHub Desktop.
private static int[][] convertStringTo2DArray(String input) throws JsonProcessingException {
ObjectMapper objectMapper = new ObjectMapper();
return objectMapper.readValue(input, int[][].class);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment