This commit is contained in:
2023-11-26 00:56:58 +01:00
parent 3568e8cca6
commit e1e368ca7a
2 changed files with 94 additions and 2 deletions

View File

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