Update dice.cpp

This commit is contained in:
Gregory Bednov 2025-01-10 21:20:34 +03:00 committed by GitHub
commit 283e64ad70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,9 +42,3 @@ int main(void) {
cout << fortune_from(rand()%91, h, m);
return 0;
}
template <typename T>
T minimum(const T& lhs, const T& rhs)
{
return lhs < rhs ? lhs : rhs;
}