From cce5999985750992e23ce16859a6e46cb0578c7b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 20:55:03 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- solutions/platinum/bts-hotcold.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/solutions/platinum/bts-hotcold.mdx b/solutions/platinum/bts-hotcold.mdx index df3213bfc3..8d5c734306 100644 --- a/solutions/platinum/bts-hotcold.mdx +++ b/solutions/platinum/bts-hotcold.mdx @@ -57,12 +57,12 @@ using ll = long long; class Tree { private: const int n; - const int log2dist; // max height of the tree - vector> &adj; // reference to adjacency list - vector> lift; // for binary lifting - vector> diff; // difference array updates - vector depth; // depth of each node - + const int log2dist; // max height of the tree + vector> &adj; // reference to adjacency list + vector> lift; // for binary lifting + vector> diff; // difference array updates + vector depth; // depth of each node + // these are for Euler tour vector tin; vector tout;