Added my name

This commit is contained in:
MarcUs7i 2025-05-07 16:41:09 +02:00
parent d35c77e353
commit 278fc56984
10 changed files with 16 additions and 16 deletions

View file

@ -3,7 +3,7 @@
* ---------------------------------------------------------
* Exercise Number: S05
* Title: Sorting criteria
* Author: */<your name>;/*
* Author: Marc Tismonar
* ----------------------------------------------------------
* Description:
* Interface for sorting algorithms
@ -35,7 +35,7 @@
* @param snd The value to compare.
* @return True if the criterion is satisfied, false otherwise.
*/
<type> is_in_asc_order(<params>);
bool is_in_asc_order(<params>);
/**
* Determines whether or not `fst` is larger than or equal to `snd` (descending order).
@ -44,6 +44,6 @@
* @param snd The value to compare.
* @return True if the criterion is satisfied, false otherwise.
*/
<type> is_in_desc_order(i<params>);
bool is_in_desc_order(i<params>);
#endif