Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Clang Robot committed Jun 6, 2024
1 parent a949511 commit 0b41037
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions daily/June4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ using namespace std;

class Solution {
public:
/**
* @brief LC:3067: Count pairs of connectable servers in a
* Weighted Tree Network
* Time: O(N^2), Space: O(n)
*
* @param edges
* @param signalSpeed
* @return vector<int>
*/
/**
* @brief LC:3067: Count pairs of connectable servers in a
* Weighted Tree Network
* Time: O(N^2), Space: O(n)
*
* @param edges
* @param signalSpeed
* @return vector<int>
*/
vector<int> countPairsOfConnectableServers(vector<vector<int>>& edges,
int signalSpeed) {
int n = edges.size() + 1;
Expand Down

0 comments on commit 0b41037

Please sign in to comment.