Skip to content

Instantly share code, notes, and snippets.

@eggplants
Last active August 27, 2023 04:28
Show Gist options
  • Save eggplants/f7a4e6c4a4ef5bc8d8750657f190684a to your computer and use it in GitHub Desktop.
Save eggplants/f7a4e6c4a4ef5bc8d8750657f190684a to your computer and use it in GitHub Desktop.
const sweepBomb = (i, j) => document.getElementsByTagName("tr")[i].getElementsByTagName("td")[j].click();
const sweep = () => {
document.getElementById("restartBtn").click();
for(var i = 0; i < 15; i++) {
for(var j = 0; j < 15; j++) {
if(bomb_data[i][j] == 0){
sweepBomb(i,j);
};
};
};
};
@eggplants
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment