Skip to content

Instantly share code, notes, and snippets.

@rhnvrm
Created March 3, 2016 15:38
Show Gist options
  • Save rhnvrm/36dca5706ab7ac935a71 to your computer and use it in GitHub Desktop.
Save rhnvrm/36dca5706ab7ac935a71 to your computer and use it in GitHub Desktop.
Scrape HackerEarth Input Data
t = document.getElementsByTagName('tr')
for(i = 0; i < t.length; i++){
u = t[i].getElementsByTagName('a')[0];
if(u!=undefined)
window.open(u.href)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment