From 97dfc068757750b8311c5347c63c53b4f798ec8e Mon Sep 17 00:00:00 2001 From: Gabriel Fioravante Date: Wed, 17 Feb 2021 22:46:57 -0500 Subject: [PATCH] Update sorting/bubble_sort_2.c Co-authored-by: David Leal --- sorting/bubble_sort_2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sorting/bubble_sort_2.c b/sorting/bubble_sort_2.c index 03dc36b4..26bbb526 100644 --- a/sorting/bubble_sort_2.c +++ b/sorting/bubble_sort_2.c @@ -10,9 +10,9 @@ * @author [Gabriel Fioravante](https://github.com/northernSage) */ -#include // for rand() calls -#include // for testing assert() -#include // for boolean values: true, false +#include /// for rand() calls +#include /// for assert() +#include /// for boolean values: true, false #define MAX 20