Skip to content

Instantly share code, notes, and snippets.

@oakmac
Created September 5, 2016 19:00
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 oakmac/016a49bb083d0c5c821fded50842a73f to your computer and use it in GitHub Desktop.
Save oakmac/016a49bb083d0c5c821fded50842a73f to your computer and use it in GitHub Desktop.
use std::collections::HashMap;
static PARENS: HashMap = HashMap::new();
PARENS.insert("{", "}");
PARENS.insert("}", "{");
PARENS.insert("[", "]");
PARENS.insert("]", "[");
PARENS.insert("(", ")");
PARENS.insert(")", "(");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment