Skip to content
Uglykoyote edited this page May 22, 2018 · 2 revisions
<title></title>
Expected Run
has22([1, 2, 2]) → True True OK
has22([1, 2, 1, 2]) → False False OK
has22([2, 1, 2]) → False False OK
has22([2, 2, 1, 2]) → True True OK
has22([1, 3, 2]) → False False OK
has22([1, 3, 2, 2]) → True True OK
has22([2, 3, 2, 2]) → True True OK
has22([4, 2, 4, 2, 2, 5]) → True True OK
has22([1, 2]) → False False OK
has22([2, 2]) → True True OK
has22([2]) → False False OK
has22([]) → False False OK
has22([3, 3, 2, 2]) → True True OK
has22([5, 2, 5, 2]) → False False OK
other tests OK
Clone this wiki locally