Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 4, 2024
1 parent ee21978 commit cce5999
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions solutions/platinum/bts-hotcold.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ using ll = long long;
class Tree {
private:
const int n;
const int log2dist; // max height of the tree
vector<vector<int>> &adj; // reference to adjacency list
vector<vector<int>> lift; // for binary lifting
vector<array<ll, 2>> diff; // difference array updates
vector<int> depth; // depth of each node
const int log2dist; // max height of the tree
vector<vector<int>> &adj; // reference to adjacency list
vector<vector<int>> lift; // for binary lifting
vector<array<ll, 2>> diff; // difference array updates
vector<int> depth; // depth of each node

// these are for Euler tour
vector<int> tin;
vector<int> tout;
Expand Down

0 comments on commit cce5999

Please sign in to comment.