# post_4 Given a non-empty list of ints, return a new list containing the elements from the original list that come after the last 4 in the original list. The original list will contain at least one 4. Note that it is valid in java to create a list of length 0. This exercise was taken from [codingbat.com](https://codingbat.com/prob/p164144) 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:** ``` [2, 4, 1, 2] ``` **Output:** ``` [1, 2] ``` ### Test 2 **Input:** ``` [4, 1, 4, 2] ``` **Output:** ``` [2] ``` ### Test 3 **Input:** ``` [4, 4, 1, 2, 3] ``` **Output:** ``` [1, 2, 3] ``` ### Test 4 **Input:** ``` [4, 2] ``` **Output:** ``` [2] ``` ### Test 5 **Input:** ``` [4, 4, 3] ``` **Output:** ``` [3] ``` ### Test 6 **Input:** ``` [4, 4] ``` **Output:** ``` [] ``` ### Test 7 **Input:** ``` [4] ``` **Output:** ``` [] ``` ### Test 8 **Input:** ``` [2, 4, 1, 4, 3, 2] ``` **Output:** ``` [3, 2] ``` ### Test 9 **Input:** ``` [4, 1, 4, 2, 2, 2] ``` **Output:** ``` [2, 2, 2] ``` ### Test 10 **Input:** ``` [3, 4, 3, 2] ``` **Output:** ``` [3, 2] ```