Commit 34cdd95a authored by 24OI-bot's avatar 24OI-bot
Browse files

style: format markdown files with remark-lint

parent 4474cf05
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -74,6 +74,7 @@
      root->size = size(root->lc) + size(root->rc) + 1;
      return root;
    }
    ```

    template<class Key, class Compare>
    typename Set<Key, Compare>::Node *
@@ -129,6 +130,7 @@
      }
      return root;
    }
    ```

    template<class Key, class Compare>
    typename Set<Key, Compare>::Node *
@@ -203,6 +205,7 @@
    template <class Key, class Compare = std::less<Key>>
    class Set {
     private:
    ```

      enum NodeColor {
        kBlack = 0, kRed = 1