You are given K sorted integer arrays (non-decreasing). Arrays may contain duplicates within the same array and across different arrays.Return a sorted list of unique integers that appear in any of the arrays (i.e., the set union, sorted). Example:A = [-100, -1, -1, 0, 5]B = [0]C = [-1, 0, 0]Output → [-100, -1, 0,…