惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
博客园 - 司徒正美
L
LangChain Blog
有赞技术团队
有赞技术团队
大猫的无限游戏
大猫的无限游戏
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
博客园 - 叶小钗
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
月光博客
月光博客
量子位
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Hash Set Pattern — LeetCode #217: Contains Duplicate
Yash Gandhi · 2026-05-17 · via DEV Community

Prerequisites: Loop Invariants (to understand why this works, not just how) | Running Sum (#1480) (the accumulator pattern this builds on). If you haven't read them, the solution will still make sense; the invariant section will click deeper if you have.

The Problem (15 seconds)

Given an integer array, return true if any value appears at least twice.

Input:  [1, 2, 3, 1]
Output: true         // 1 appears twice

Input:  [1, 2, 3, 4]
Output: false        // all distinct

Enter fullscreen mode Exit fullscreen mode

LeetCode #217 — Contains Duplicate

My First Instinct

I read "does any value appear twice?" and thought: for each number, check if it appears again later. That's a nested loop:

// Brute force — for each element, scan the rest
function containsDuplicate(nums: number[]): boolean {
  for (let i = 0; i < nums.length; i++) {
    for (let j = i + 1; j < nums.length; j++) {
      if (nums[i] === nums[j]) return true;
    }
  }
  return false;
}

Enter fullscreen mode Exit fullscreen mode

O(n²). On paper this is what your hand would do — pick a number, scan the rest. (You'll see this exact same instinct in Two Sum (#1) later — it's the natural human approach, and it's always the starting point.)

The Reframe

I'm checking: "does this number exist somewhere else in the array?"

Flip it: "have I already seen this number?"

If I keep a set of numbers I've visited so far, the answer is one lookup away. That's a hash set — O(1) to check, O(1) to add.

The Invariant

At step i, seen contains every element from indices 0 to i-1.

If nums[i] is already in seen, we've found a duplicate. If we finish the loop without finding one, all values are unique.

This is the exact same invariant you'll use in Two Sum (#1) — just simpler. There, you store value→index pairs. Here, you only need the values.

Solution

TypeScript:

function containsDuplicate(nums: number[]): boolean {
  const seen = new Set<number>();

  for (const num of nums) {
    if (seen.has(num)) return true;
    seen.add(num);
  }

  return false;
}

Enter fullscreen mode Exit fullscreen mode

Python:

def contains_duplicate(nums: list[int]) -> bool:
    seen: set[int] = set()

    for num in nums:
        if num in seen:
            return True
        seen.add(num)

    return False

Enter fullscreen mode Exit fullscreen mode

Complexity: O(n) time, O(n) space.

Dry Run

nums = [1, 2, 3, 1]

num=1: seen={}        → 1 not in seen → seen={1}
num=2: seen={1}       → 2 not in seen → seen={1,2}
num=3: seen={1,2}     → 3 not in seen → seen={1,2,3}
num=1: seen={1,2,3}   → 1 IS in seen! → return true ✓

Enter fullscreen mode Exit fullscreen mode

The One-Liner Temptation

You might think: "Just check if Set(nums).size !== nums.length."

const containsDuplicate = (nums: number[]): boolean =>
  new Set(nums).size !== nums.length;

Enter fullscreen mode Exit fullscreen mode

This works and is clean. But it always processes the entire array — even if the duplicate is at index 1. The loop version exits early. For interviews, show the loop version first (it demonstrates you understand the pattern), then mention the one-liner as an alternative.

Where This Pattern Shows Up Again

Problem What changes
Two Sum (#1) Instead of just checking existence, you also store the index
Valid Anagram (#242) Instead of a Set, you use a Map to count frequencies
Group Anagrams (#49) Hash map with a computed key (sorted string)
Longest Substring Without Repeating Characters (#3) Set + sliding window

The "have I seen this?" question is everywhere. This problem is where you practice it in its purest form.

What I Learned

  1. "Have I seen this before?" = hash set. The simplest version of the lookup pattern. No values to store, just existence. This is the question behind dozens of problems — learn to hear it, even when the problem doesn't phrase it this way.

  2. The universal tradeoff: spend space to save time. The brute force checks all pairs (O(n²) time, O(1) space). The hash set remembers what it's seen (O(n) time, O(n) space). Almost every O(n²) → O(n) optimization works the same way: store previous results so you don't re-scan. This is the same tradeoff in Two Sum, Valid Anagram, and Subarray Sum Equals K.

  3. The invariant is the same one Two Sum uses. seen contains everything visited so far. If you understand it here, Two Sum's invariant is just one step further (storing indices alongside values). Valid Anagram (#242) goes further still — storing counts instead of just existence.

  4. TypeScript vs Python: Set.has() vs in set — Python reads more naturally, but TypeScript's generic Set<number> gives you type safety. Both are O(1) average.


What's a problem where you used a nested loop, solved it, and only later realized a hash set would've done it in one pass?


Next in the series: Valid Anagram (#242) — where you'll take the hash set one step further and store counts instead of just existence. Then we bring all three patterns together in Two Sum (#1).