TBTridib Banikintridib.hashnode.dev·Jul 10 · 5 min readI Auto-Save Every Accepted HackerRank Solution to GitHub — Here's HowI practice on HackerRank a lot. The problems are fine, but I kept losing my own work. I'd solve something, move on, and weeks later I couldn't remember: What trick I used The time/space complexity o00
SRSharanya Ramchandrainblog-sharanya.hashnode.dev·Jun 29 · 6 min readFinding My Way to HackerRankThis is me finally writing about my internship — a couple of weeks after finding out I got converted to full-time. I hadn’t updated my LinkedIn about my HackerRank internship. I had made a deal with m00
JMJuan Mathews Rebello Santosinfreecodecamp.org·Jun 25 · 12 min readHow I Became Brazil's First Visually Impaired Cybersecurity Graduate — and Changed Vulnerability ResearchI was born prematurely at six months. My mother's placenta detached before delivery, and she essentially "gave birth" before I came out. Two days after my birth, doctors found a heart murmur that requ00
SPSneha Poojaryindsamadesimple.hashnode.dev·May 26 · 4 min readSliding Window Algorithm Explained Visually | From Brute Force to OptimizationIf you’ve solved DSA problems before, chances are you’ve come across questions like: Longest Substring Without Repeating Characters Maximum Sum Subarray of Size K Minimum Window Substring At firs00
SCSamihan Chatterjeeinsamihan.hashnode.dev·Mar 26 · 6 min readProject OBLITERATUS OBLITERATUS OBLITERATUS is a specialized open-source toolkit designed for "abliteration"—the surgical identification and removal of refusal behaviors in large language models (LLMs) without the need f00
SAShahwar Alam Naqviinis-power-of-two.hashnode.dev·Dec 7, 2025 · 1 min readHackerRank: Weather Observation Station 1Question and Answer: Key Points: What the Query Does Retrieves the CITY and STATE fields for every row in the STATION table Key SELECT Fields Only CITY and STATE are requested (not other columns) Why It Works No WHERE condition → returns all st...00
SAShahwar Alam Naqviinis-power-of-two.hashnode.dev·Dec 7, 2025 · 1 min readHackerRank: Japanese Cities' NamesQuestion and Answer: Key Points: What the Query Does Selects the NAME of every city located in Japan Key Condition COUNTRYCODE = 'JPN' filters rows to only Japanese cities Why It Works Only the NAME column is returned, exactly as the problem as...00
SAShahwar Alam Naqviinis-power-of-two.hashnode.dev·Dec 6, 2025 · 1 min readHackerRank: Japanese Cities' AttributesQuestion and Answer: Key Points: What the Query Does Retrieves all columns for every city located in Japan Key Conditions Used COUNTRYCODE = 'JPN' filters only Japanese cities Why It Works SELECT * returns the complete details of each matching ...00
SAShahwar Alam Naqviinis-power-of-two.hashnode.dev·Dec 6, 2025 · 1 min readHackerRank: Select By IDQuestion and Answer: Key Points: What the Query Does Fetches all columns for the city with ID = 1661 Key Conditions Used WHERE ID = 1661 ensures we only retrieve the specific city requested Why It Works SELECT * returns all available fields (ID...00
SAShahwar Alam Naqviinis-power-of-two.hashnode.dev·Dec 6, 2025 · 1 min readHackerRank: Revising the Select Query IIProblem: https://www.hackerrank.com/challenges/revising-the-select-query-2 Question: Code: SELECT NAME FROM CITY WHERE COUNTRYCODE='USA' AND POPULATION>120000 Key Points: What the Query Does Retrieves the names of U.S. cities Only cities...00