leetcode/2699-231124/main.cpp

15 lines
285 B
C++
Raw Permalink Normal View History

2023-11-26 00:56:58 +01:00
//https://leetcode.com/problems/modify-graph-edge-weights/
2023-11-24 11:05:17 +01:00
#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){
2023-11-26 00:56:58 +01:00
2023-11-24 11:05:17 +01:00
}
2023-11-26 00:56:58 +01:00
};
2023-11-24 11:05:17 +01:00
int main(){
2023-11-26 00:56:58 +01:00
int n;
2023-11-24 11:05:17 +01:00
}