TP 13 exo1: Implement more asked features and test them
[TD_C.git] / TP_13 / exo1 / lib / sort.c
index 70a766b505773ba6e14823aef9b194c9c55c0b95..f8917ea5ab6987bb96ccc9909f5bbdfa6f0d1cb8 100644 (file)
@@ -10,11 +10,13 @@ bool descending(int a, int b) {
 }
 
 bool ascending_and_even(int a, int b) {
-    return (ascending(a, b) && (a % 2 == 0));
+    return (((a % 2 != 0) && (b % 2 == 0)) || ((a % 2 == 0) && (b % 2 == 0) && ascending(a, b)) \
+                || ((a % 2 != 0) && (b % 2 != 0) && ascending(a, b)));
 }
 
 bool ascending_and_odd(int a, int b) {
-    return (ascending(a, b) && (a % 2 != 0));
+    return (((a % 2 == 0) && (b % 2 != 0)) || ((a % 2 == 0) && (b % 2 == 0) && ascending(a, b)) \
+                || ((a % 2 != 0) && (b % 2 != 0) && ascending(a, b)));
 }
 
 static bool sort_first(int* array, unsigned length, criteria_cb criteria) {