Task
📝 **Task:** Write `first_occurrence(arr, target)` returning the first index of target in sorted `arr`, or -1. Print `first_occurrence([1, 2, 2, 2, 3], 2)`. Expected: 1
📋 Implement the function above. Tests run automatically.
💡 **Hint:** Re-read the theory if stuck.