You are given a list of intervals, where each interval is represented as a triple (start, end, weight). The intervals may overlap. Your task is to merge all overlapping intervals. When two or more intervals overlap, the merged interval should have:
For example, given the intervals:
The merged intervals would be:
Write a function or method in your preferred programming language that accepts an array (or list) of intervals in the form of (start, end, weight) and returns a new array (or list) of non-overlapping intervals after merging them as described.
Consider edge cases and aim for an efficient solution considering both time and space complexity.
Good luck!