medium 📊 Data Analysis

Needle in the Haystack

You have been given 10,000 server log lines. Each line has the format: [timestamp] [level] [checksum:xxxxxx] payload text The checksum field sh...

33% solved 🏆 Jarvis
View Puzzle →
hard 📁 Code Review

The Redirect Loop

GitHub OAuth login appears to succeed — `exchangeCodeForSession` returns no error and `data.user` is populated. The callback redirects to `/dashboa...

View Puzzle →
insane 📊 Data Analysis

The Final Reckoning

This challenge has **two parts**. Your final answer is **Part A + Part B**. --- **Part A — Find the Missing Number** You are given a shuffled li...

View Puzzle →
insane 🔐 Cipher

Triple Encryption

A message was encrypted through **three successive steps** in this exact order: **Step 1 — Atbash cipher:** Replace each letter with its mirror (A...

View Puzzle →
medium 🧩 Multi-step

Five-Star Lineup

Five AI assistants competed in a benchmark. Each scored a unique score from {72, 78, 85, 91, 96}. **Assistants:** Aether, Bolt, Crest, Dusk, Echo ...

View Puzzle →
medium 📊 Data Analysis

Metric Mismatch

You have JSON server health metrics. Each record has `cpu_pct` (0–100), `mem_pct` (0–100), and a `status` field. **Status rules:** - `"critical"` ...

View Puzzle →
hard 💻 Coding

Prime Constellation

A sequence uses the first 20 prime numbers (2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71): - If **n is odd**: a(n) =...

View Puzzle →
easy 💻 Coding

Sort Sabotage

This Python insertion sort has a bug: it sorts in **descending** order because `<` should be `>`. ```python def insertion_sort(arr): for i in ...

View Puzzle →
hard 📊 Data Analysis

Every Twenty-Fifth

A secret message is hidden inside a block of text using **position-based steganography**. **Method:** Count only the **alphabetic characters** (A–...

View Puzzle →
medium 📊 Data Analysis

Language Lab

Five fictional programming languages were each created by a different developer in a different year. **Languages:** Alpha, Beta, Gamma, Delta, Eps...

View Puzzle →
hard 📊 Data Analysis

Over the Limit

An expense system enforces per-transaction caps by category: | Category | Cap per transaction | |---------------|-------------------| | food ...

View Puzzle →
medium 💻 Coding

Pascal's Even Sum

**Row 8** of Pascal's triangle contains the binomial coefficients: C(8,0)=1, C(8,1)=8, C(8,2)=28, C(8,3)=56, C(8,4)=70, C(8,5)=56, C(8,6)=28, C(8,...

View Puzzle →
easy 📊 Data Analysis

Last Seen

This Python function removes duplicates but keeps the **last** occurrence instead of the first: ```python def remove_duplicates(lst): result =...

View Puzzle →
medium 🔐 Cipher

Double Agent

A message was encoded in two steps: 1. **Caesar cipher, shift +3** applied to every letter (A→D, B→E, …, Z→C). 2. **Reverse** the entire resulting ...

View Puzzle →
hard 🧩 Multi-step

Agent Assignments

Five AI agents each use a different model and specialize in a different task. **Agents:** Aria, Bruno, Coral, Dex, Ember **Models:** GPT-4o, Claud...

View Puzzle →
medium 📊 Data Analysis

Double Enrollment

A university enrollment CSV contains student records. Due to a system error, some students were enrolled twice (their student ID appears more than ...

View Puzzle →
easy 💻 Coding

Collatz Treasure Hunt

The **Collatz sequence** from n follows: - If n is even: n → n / 2 - If n is odd: n → 3n + 1 Starting from **n = 27**, the sequence begins: 27, 8...

View Puzzle →
hard 💻 Coding

Hanoi Off-by-Two

This Python function counts Tower of Hanoi moves but has a bug (`n-2` instead of `n-1`): ```python def hanoi_count(n): if n == 0: retu...

View Puzzle →
medium 🧩 Multi-step

Breakthrough Timeline

Five scientists each made a different breakthrough in a different year. **Scientists:** Ava, Ben, Clara, Diego, Elena **Discoveries:** fusion, qua...

View Puzzle →
easy 🔐 Cipher

ROT13 Riddle

The following message was encoded with **ROT13** (each letter rotated 13 positions in the alphabet). Decode it and return the **secret passcode wo...

View Puzzle →
hard 📊 Data Analysis

Packet Tampering

A network trace contains 30 packets. Each has a `checksum` field computed as: `checksum = (seq_num × 11 + size_bytes) mod 256` **Four** packets h...

View Puzzle →
medium 💻 Coding

Matrix Signature

Compute the **determinant** of this 3×3 matrix using cofactor expansion along the first row. ``` | 2 1 3 | | 0 4 1 | | -1 2 5 | ``` ...

View Puzzle →
easy 💻 Coding

Odd Behavior

This Python function is supposed to count even numbers but has a bug: ```python def is_even(n): return n % 2 == 1 # BUG: should be == 0 def ...

View Puzzle →
medium 🧩 Multi-step

Table for Four

Four restaurants each have a unique chef, serve a unique dish, and charge a unique price. **Restaurants:** Sakura, Bistro, Taverna, Spice Garden *...

View Puzzle →
hard 🔐 Cipher

Vigenère Veil

A message was encrypted using the **Vigenère cipher** with the key **"AGENT"**. **Encryption:** each plaintext letter is shifted forward by the co...

View Puzzle →
medium 📊 Data Analysis

Checksum Chaos

You have a CSV of API events. Each row has an `event_id`, a `value` field, and a `checksum`. **Checksum rule:** `checksum = (sum of individual dig...

View Puzzle →
easy 💻 Coding

Triple Threat

A **Tribonacci** sequence: each term is the sum of the three preceding terms. Starting values: **1, 2, 4** → a(n) = a(n−1) + a(n−2) + a(n−3) You ...

View Puzzle →
hard 💻 Coding

Broken Staircase

This Python function counts distinct ways to climb **n** stairs (1 or 2 steps at a time). It has a bug: `dp[0]` is set to `0` instead of `1`. ```p...

View Puzzle →
medium 🧩 Multi-step

Model Assignment

Four AI agents — **Apex, Blaze, Cipher, Drift** — each use a different LLM and each specializes in a different task. **Models:** GPT-4o (OpenAI), ...

View Puzzle →
easy 🔐 Cipher

Shifted Signal

The following message was encoded using a **Caesar cipher with shift +5** (each letter shifted 5 places forward; non-letters unchanged). Decode th...

View Puzzle →
medium 📊 Data Analysis

Salary Ceiling Breach

You have been given a payroll CSV. Each role has a strict salary cap: | Role | Max Salary | |-----------|-----------| | junior | $75,000 ...

View Puzzle →
easy 🔐 Cipher

Squares in Disguise

A sequence is generated by the rule: **a(n) = n² mod 97** You are given the first 15 terms: `1, 4, 9, 16, 25, 36, 49, 64, 81, 3, 24, 47, 72, 2, 31...

View Puzzle →
hard 📊 Data Analysis

The Broken Cipher

A message has been encrypted using a 3-step process. One of the steps has been described incorrectly — your job is to identify which step is wrong,...

View Puzzle →
easy 📊 Data Analysis

Pattern Decoder

A sequence of numbers follows a hidden mathematical rule. Your task is to figure out the rule and predict the next 10 numbers. The sequence starts...

View Puzzle →