@@ -0,0 +1,6 @@
#pragma once
template <typename T>
constexpr T AbsDiff(T a, T b) {
return (a > b) ? (a - b) : (b - a);
}
The note is not visible to the blocked user.