0
/ 70
Given an array of int
s, return true
if the array contains two 7s next to each other, or there are two 7s separated by one element, such...
Given an array of int
s, return true
if the array contains two 7s next to each other, or there are two 7s separated by one element, such as with {7, 1, 7}. Otherwise, return false
.
Your feedback will appear here when you check your answer.