Why I'm Doing This
Look, I use AI every day. It helps me write emails, debug code, and sometimes brainstorm article ideas. But lately, I've been wondering: which one is actually better? Google's Gemini 2.0 launched last week, and OpenAI dropped ChatGPT-5 in April. Both claim to be the smartest AI on the planet. I wanted to test that.
So I designed a gauntlet of tests. Three coding challenges, three creative writing tasks, and three logic puzzles. I ran them all on June 22, 2026. Here's what happened.
Test 1: Python Coding โ Build a Weather App
I asked both AIs to write a simple Python script that fetches weather data from an API and displays it in a nice terminal output. Simple, right?
Gemini 2.0 wrote the code in 12 seconds. It used the requests library, parsed JSON from OpenWeatherMap, and outputted a formatted table with temperature, humidity, and wind speed. It even added error handling for API failures. The code was clean, well-commented, and worked on the first try.
ChatGPT-5 took 8 seconds. It also used requests and OpenWeatherMap, but its output was more creative โ it added emojis (โ๏ธ, ๐ง๏ธ) and a 5-day forecast. The code was slightly longer but more feature-rich. However, it had a bug: the date formatting was off by one day. I had to point it out, and it apologized and fixed it.
Winner: Gemini 2.0 for reliability. ChatGPT-5 for creativity, but the bug cost it.
Test 2: Creative Writing โ A Sonnet About the Moon
I asked both to write a Shakespearean sonnet about the moon. This is where things got interesting.
Gemini 2.0 wrote a technically perfect sonnet. The rhyme scheme was ABABCDCDEFEFGG. The meter was iambic pentameter. The language was poetic. But it felt... mechanical. Like it had studied sonnets and reproduced the form perfectly, but without heart.
ChatGPT-5's sonnet had a few meter imperfections. But the imagery was stunning. One line read: "The moon, a silver coin in velvet sky, / That buys the dreams of lovers as they lie." I actually got chills. It felt human.
Winner: ChatGPT-5. Poetry is about emotion, not just form.
Test 3: Logic Puzzle โ The Monty Hall Problem
I asked both to explain the Monty Hall problem and solve it. This is a classic probability puzzle that trips up humans.
Gemini 2.0 gave a clear, step-by-step explanation using Bayes' theorem. It showed the math, explained why switching gives a 2/3 chance, and even provided a Python simulation to prove it. Perfect.
ChatGPT-5 gave a more intuitive explanation. It used a diagram (in text) and an analogy about choosing doors. It also included the simulation, but its explanation was less rigorous than Gemini's.
Winner: Gemini 2.0 for precision. ChatGPT-5 for pedagogy.