diff --git a/daily/June4.cpp b/daily/June4.cpp index 76853fe..95cfb31 100644 --- a/daily/June4.cpp +++ b/daily/June4.cpp @@ -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 - */ + /** + * @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 + */ vector countPairsOfConnectableServers(vector>& edges, int signalSpeed) { int n = edges.size() + 1;