You are given an array of unique tasks (which can be strings or numbers) and an array of dependency pairs. Each dependency is represented as a two-element array [a, b] indicating that task a must be completed before task b.
Write a function that returns a valid ordering of tasks that satisfies all the dependencies. If no valid ordering exists (i.e., there's a cyclic dependency), return an empty array.
Details:
Example:
Input:
tasks: ["A", "B", "C", "D"]
dependencies: [["A", "B"], ["B", "C"], ["D", "C"]]
Possible Output:
["A", "D", "B", "C"] or ["D", "A", "B", "C"]
Implement the solution with attention to time and space efficiency. You may use any programming language of your choice.