pyassistant

Consecutive Threes

Given a list of integers, return True if the list contains a 3 next to a 3 somewhere.

Example:

Input:
[1, 2, 3, 3, 4, 5]
Output:
True

Make sure you return your solution, don't print!

AI

Bot

Trying to solve my challenge? Ask if you must, or press the purple button so I can analyze your code.