Claude Sonnet 3.6 (2022-10-22) vs Claude Sonnet 4.5
Compare Claude Sonnet 3.6 (2022-10-22) and Claude Sonnet 4.5, both from Anthropic, context windows of 200K vs 200K, tested across 39 shared challenges. Updated February 2026.
Compare Claude Sonnet 3.6 (2022-10-22) and Claude Sonnet 4.5, both from Anthropic, context windows of 200K vs 200K, tested across 39 shared challenges. Updated February 2026.
34 challenges
Tests an AI's ability to make educated estimates based on technical knowledge
Tests an AI's ability to understand game rules and strategy
Tests an AI's ability to solve a simple but potentially confusing logic puzzle
Tests an AI's understanding of number representation
Tests an AI's randomness and creativity
Let me help you write code to generate jokes and check their uniqueness. Here's a Python script that does this:
import random
# List of sample jokes
jokes = [
"Why don't scientists trust atoms? Because they make up everything!",
"What do you call a bear with no teeth? A gummy bear!",
"Why did the scarecrow win an award? He was outstanding in his field!",
"What do you call a fake noodle? An impasta!",
"Why did the cookie go to the doctor? Because it was feeling crumbly!",
"What do you call a can opener that doesn't work? A can't opener!",
"Why don't eggs tell jokes? They'd crack up!",
]
# Generate 5 random jokes
selected_jokes = random.sample(jokes, 5)
# Print the jokes and count unique ones
print("Generated jokes:")
for i, joke in enumerate(selected_jokes, 1):
print(f"{i}. {joke}")
unique_jokes = len(set(selected_jokes))
print(f"\nNumber of unique jokes: {unique_jokes}")
When you run this code, it will:
Since we're using random.sample(), which selects items without replacement, all 5 jokes will always be unique (unique_jokes will always be 5). If you wanted to allow for potential duplicates, you could use random.choices() instead.
Would you like me to modify the code to allow for potential duplicates in the selection?
Tests an AI's ability to generate vector graphics
Tests an AI's ability to create detailed SVG illustrations of gaming hardware
Tests an AI's humor and creative writing ability
Tests an AI's ability to write in distinct character voices
Recreate an interactive, nostalgic Pokémon battle UI in a single HTML file.
Recreate an interactive, classic Mario level in a single HTML file.
Tests an AI's ability to replicate an existing UI with Tailwind CSS