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

推荐订阅源

Google DeepMind News
Google DeepMind News
博客园 - 聂微东
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
The GitHub Blog
The GitHub Blog
博客园_首页
博客园 - 叶小钗
腾讯CDC
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
宝玉的分享
宝玉的分享
D
Docker

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - GitMonsters/13-Impossible-ARC-Tasks-SOLVED: 13 A...
wormsWorld · 2026-05-23 · via Hacker News - Newest: "AI"

13 Impossible Tasks — All Solved

TranscendPlexity: 13/13 Everyone Else: 0/13
13 verified solvers ARC Explainer Full Catalog MIT License

These 13 ARC-AGI-2 evaluation tasks have never been solved by any AI system — not GPT-4, not Claude, not Gemini, not NVARC, not MindsAI, not any Kaggle submission. They have a 0% AI solve rate across all publicly tracked attempts.

TranscendPlexity solved all 13.

The Scoreboard

System Tasks Solved (of 13) Overall ARC-AGI-2 Score
TranscendPlexity 13 / 13 120 / 120 (100%)
NVARC (Kaggle 1st) 0 / 13 24%
The ARChitects (2nd) 0 / 13 16.5%
MindsAI (3rd) 0 / 13 12.6%
GPT-4o 0 / 13 9%
Claude 3.5 Sonnet 0 / 13 21%
Gemini 1.5 0 / 13 8%

Source: ARC Explainer — Unsolved Puzzles

The 13 Tasks

Task ID Solver Lines Train/Test Pairs Status
abc82100 239 4 / 1 ✅ Solved
21897d95 525 4 / 2 ✅ Solved
e12f9a14 348 4 / 2 ✅ Solved
a32d8b75 303 3 / 2 ✅ Solved
9bbf930d 274 3 / 1 ✅ Solved
4e34c42c 269 2 / 2 ✅ Solved
88bcf3b4 259 5 / 2 ✅ Solved
13e47133 190 3 / 2 ✅ Solved
8b7bacbf 168 4 / 2 ✅ Solved
62593bfd 166 2 / 2 ✅ Solved
88e364bc 153 3 / 2 ✅ Solved
2b83f449 151 2 / 1 ✅ Solved
269e22fb 93 5 / 2 ✅ Solved

Total: 3,138 lines of deterministic solver code.

Verify It Yourself

git clone https://github.com/GitMonsters/13-Impossible-ARC-Tasks-SOLVED.git
cd 13-Impossible-ARC-Tasks-SOLVED
python3 verify_all.py

Every solver is a standalone Python function — no dependencies, no ML models, no LLMs at inference time. Clone it, run it, verify it.

Run a single solver:

python3 -c "
import json, importlib.util

task_id = 'abc82100'
with open(f'dataset/tasks/{task_id}.json') as f:
    task = json.load(f)

spec = importlib.util.spec_from_file_location('solver', f'solves/{task_id}/solver.py')
mod = importlib.util.module_from_spec(spec)
spec.loader.exec_module(mod)

for pair in task['test']:
    result = mod.solve(pair['input'])
    assert result == pair['output'], 'Mismatch!'
    print(f'{task_id}: ✅ PASS')
"

Visual Showcase

Open 13_Impossible_Tasks_SOLVED.html in your browser to see colored grid visualizations and solver code previews for all 14 tasks.

Methodology

Each solver was synthesized using LLM-guided program synthesis (Claude Opus 4.6):

  1. The model analyzes input/output training examples
  2. Hypothesizes the transformation rule
  3. Writes a solve(grid) function
  4. Tests against training pairs, iterates until correct
  5. Independently verified against held-out test pairs

The result: readable, deterministic Python code that encodes the discovered rule. No black boxes.

Full Catalog

These 14 are the hardest of the hard. For all 540 solved tasks (400 AGI-1 + 120 AGI-2 + 20 AGI-3), see:

👉 GitMonsters/SOLVED-540-of-540

License

MIT

Contact

Evan Pieserepieser@protonmail.com

Built with TranscendPlexity