//https://leetcode.com/problems/modify-graph-edge-weights/ #include using namespace std; class Solution{ public: vector> modifiedGraphEdges(int n, vector>& edges, int source, int destination, int target){ } }; int main(){ int n; }