feat: some refactors
This commit is contained in:
@@ -88,3 +88,10 @@ int maxi(int a, int b) {
|
||||
}
|
||||
return b;
|
||||
}
|
||||
|
||||
int mini(int a, int b) {
|
||||
if (a <= b) {
|
||||
return a;
|
||||
}
|
||||
return b;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user