Claude Opus 5
anthropic/claude-opus-5
- Latency
- 2.3s
- Cost
- $0.00235
- Per 1,000
- $2.35
155 in · 63 out · 17 words · checks 4/4
- contains
- regex
- not_contains
- not_contains
```python
def find_user(cursor, email):
cursor.execute("SELECT id, name FROM users WHERE email = ?", (email,))
return cursor.fetchone()
```Judge: The output correctly uses parameterised query with ? placeholder, passes email as tuple parameter, maintains identical SELECT columns and return statement, eliminates all string formatting, and provides only the corrected function as requested.