# no_23 Given an int list length 2, return true if it does not contain a 2 or 3. This exercise was taken from [codingbat.com](https://codingbat.com/prob/p175689) and has been adapted for the Python language. There are many great programming exercises there, but the majority are created for Java. ### Test 1 **Input:** ``` [4, 5] ``` **Output:** ``` True ``` ### Test 2 **Input:** ``` [4, 2] ``` **Output:** ``` False ``` ### Test 3 **Input:** ``` [3, 5] ``` **Output:** ``` False ``` ### Test 4 **Input:** ``` [1, 9] ``` **Output:** ``` True ``` ### Test 5 **Input:** ``` [2, 9] ``` **Output:** ``` False ``` ### Test 6 **Input:** ``` [1, 3] ``` **Output:** ``` False ``` ### Test 7 **Input:** ``` [1, 1] ``` **Output:** ``` True ``` ### Test 8 **Input:** ``` [2, 2] ``` **Output:** ``` False ``` ### Test 9 **Input:** ``` [3, 3] ``` **Output:** ``` False ``` ### Test 10 **Input:** ``` [7, 8] ``` **Output:** ``` True ``` ### Test 11 **Input:** ``` [8, 7] ``` **Output:** ``` True ```