Content deleted Content added
Line 160:
*/
template <typename T>
constexpr bool ckmin(T& a, const T& b) {
return b < a ? a = b, 1 : 0;
}
|
Line 160:
*/
template <typename T>
constexpr bool ckmin(T& a, const T& b) {
return b < a ? a = b, 1 : 0;
}
|