LF.24.Total Occurance Given a target integer T and an integer array A sorted in ascending order, Find the total number of occurrences of T in A. Examples A = {1, 2, 3, 4, 5}, T = 3, return 1 A = {1, 2, 2, 2, 3}, T = 2, return 3 A = { 1, 2, 2, 2, 3},...