raybbian's CP Algos

This documentation is automatically generated by competitive-verifier/competitive-verifier

View the Project on GitHub raybbian/comp-programming

:heavy_check_mark: algo/ds/common.h

Depends on

Required by

Verified with

Code

#pragma once
#include "algo/common.h"

namespace algo::ds {

template <typename T>
T min(const T &a, const T &b) {
    return std::min(a, b);
}

}; // namespace algo::ds
#line 2 "algo/common.h"
#ifndef PREPROCESS
#include <bits/stdc++.h>
#endif

namespace algo {}

#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
#line 3 "algo/ds/common.h"

namespace algo::ds {

template <typename T>
T min(const T &a, const T &b) {
    return std::min(a, b);
}

}; // namespace algo::ds
Back to top page