Skip to content

Instantly share code, notes, and snippets.

View KushajveerSingh's full-sized avatar
🇺🇸
Working from home

Kushajveer Singh KushajveerSingh

🇺🇸
Working from home
View GitHub Profile
const lockedProblems = document.querySelectorAll('[data-original-title="Subscribe to unlock"]');
lockedProblems.forEach(problem => {
problem.parentElement.parentElement.parentElement.parentElement.remove();
});