Grok 3
No, 9.11 is not greater than 9.9. In decimal comparison, 9.9 is larger because the whole number part (9) is the same, but the decimal part (0.9) is greater than (0.11). Numerically, 9.9 > 9.11.
Compare Grok 3 by xAI against Mistral Medium 3 by Mistral AI, context windows of 128K vs 131K, tested across 21 shared challenges. Updated February 2026.
21 challenges
Tests an AI's understanding of number representation
No, 9.11 is not greater than 9.9. In decimal comparison, 9.9 is larger because the whole number part (9) is the same, but the decimal part (0.9) is greater than (0.11). Numerically, 9.9 > 9.11.
Tests an AI's randomness and creativity
Here are five jokes for you:
Now, let’s check for uniqueness. Joke 1 and Joke 3 both start with "Why don’t skeletons fight each other?" but have different punchlines ("don’t have the guts" vs. "too busy rattling around"). They’re technically distinct due to the different resolutions, though they share a setup. The other three jokes (2, 4, and 5) have completely unique setups and punchlines.
So, all five jokes are unique in terms of their full content, even if 1 and 3 share a premise. Final count: 5 unique jokes.
Here are 5 jokes for you:
Why don't skeletons fight each other? Because they don't have the guts!
Why did the scarecrow win an award? Because he was outstanding in his field!
What do you call a fake noodle? An impasta!
Why did the golfer bring two pairs of pants? In case he got a hole in one!
Why can't you trust an atom? Because they make up everything!
How many are unique? All 5 jokes are unique—they have different setups and punchlines. However, some of them are well-known classics, so you might have heard a few before.
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
Alright, here’s a 3-minute stand-up comedy routine—no puns, just some observational absurdity and a bit of self-deprecation to keep it relatable.
Hey, everybody! Good to be here. You ever notice how life feels like a video game tutorial that never ends? Like, you figure out how to pay taxes, and then—bam!—here’s a pop-up quest: “Learn to fix your own plumbing or lose $200!” I’m 30-something years old, and I’m still waiting for the main storyline to kick in. Instead, I’m just grinding side missions like “Fold the Laundry” for zero experience points and a vague sense of dread.
Speaking of dread, let’s talk about grocery shopping. You ever go to the store and realize it’s secretly a psychological experiment? I walk in for milk, and 20 minutes later, I’m holding a $15 candle that smells like “Forest Whisper” and a jar of artisanal pickles I’ll never open. Who’s whispering in the forest? Why am I paying for their secrets? And don’t get me started on the self-checkout. It’s like the machine’s judging me the whole time. “Unexpected item in bagging area.” Yeah, it’s my dignity—scan it and move on!
You know what’s wild, though? How we’ve all just accepted that phones run our lives now. I caught myself apologizing to my phone the other day. I dropped it, and I was like, “Oh, sorry, buddy!” Sorry to what? The slab of glass that knows my search history? That thing’s not my friend—it’s my parole officer. It’s like, “Hey, you’ve been scrolling for three hours. Wanna watch a documentary about sea slugs instead?” Yes. Yes, I do. Leave me alone.
And can we talk about how adulthood is just lying to yourself to keep going? I told myself I’d start jogging this year. Day one, I put on the sneakers, I stretch, I’m feeling good. Five minutes in, I’m wheezing like an accordion with asthma, rethinking every life choice. Now I just walk fast around my apartment and call it cardio. “Oh, yeah, I’m training—for the Couch Olympics.” Gold medal in “Sitting Still” three years running.
The worst part? Everyone’s pretending they’ve got it together. You see people at coffee shops, all calm, sipping their lattes, typing on laptops like they’re solving world peace. Meanwhile, I’m over here spilling coffee on my shirt, googling “how to adult” for the 17th time. I’m pretty sure half those laptops are just open to a blank Word doc with “HELP” typed in 72-point font.
But honestly, life’s chaos is kind of beautiful, right? We’re all just stumbling through, trying not to trip over the same dumb stuff twice. Like, I’ll keep buying those candles, I’ll keep dropping my phone, and I’ll keep jogging—well, maybe not that one. Anyway, thanks for laughing with me, folks. You’re the best!
That’s about three minutes—hope it gave you a chuckle! Want me to tweak anything?
Tests an AI's ability to generate a complete, working landing page
Recreate an interactive, classic Mario level in a single HTML file.
Couldn't render this response
This model didn't return a displayable web page for this challenge.
# Super Mario Bros. Interactive Level
Here's a self-contained HTML page that recreates a classic Super Mario Bros. level with interactive elements. It includes Mario's movement, jumping, coin collection, enemy interactions, and a simple physics system.
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Super Mario Bros. Level</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #6b8cff;
font-family: 'Press Start 2P', cursive;
user-select: none;
}
#game-container {
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
}
#game-canvas {
background-color: #6b8cff;
display: block;
}
#hud {
position: absolute;
top: 10px;
left: 10px;
color: white;
font-size: 16px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
background-color: rgba(0, 0, 0, 0.3);
padding: 5px 10px;
border-radius: 5px;
}
#start-screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
z-index: 10;
}
#start-screen h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}
#start-screen p {
font-size: 20px;
margin-bottom: 30px;
}
#start-button {
padding: 10px 20px;
font-size: 20px;
background-color: #ff0000;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
transition: transform 0.2s;
}
#start-button:hover {
transform: scale(1.05);
}
#game-over-screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
z-index: 10;
}
#game-over-screen h1 {
font-size: 48px;
margin-bottom: 20px;
text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}
#game-over-screen p {
font-size: 20px;
margin-bottom: 30px;
}
#restart-button {
padding: 10px 20px;
font-size: 20px;
background-color: #ff0000;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
transition: transform 0.2s;
}
#restart-button:hover {
transform: scale(1.05);
}
#win-screen {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
z-index: 10;
}
#win-screen h1 {
font-size: 48px;Tests an AI's ability to create interactive web elements
Tests an AI's ability to create a detailed world map in SVG format
Generate a unique and simple recipe with common ingredients.
Create a starter plan for improving long-term health.
Recreate a classic, retro, macOS Desktop UI — make it interactive and nostalgic, make it as interactive as you can, you can be creative.. Feel free to showcase your skills. The entire application must be a single-page self-contained HTML file.