diff --git a/sorting/bubble_sort_2.c b/sorting/bubble_sort_2.c index ef54d3d9..03dc36b4 100644 --- a/sorting/bubble_sort_2.c +++ b/sorting/bubble_sort_2.c @@ -10,10 +10,9 @@ * @author [Gabriel Fioravante](https://github.com/northernSage) */ -#include -#include -#include -#include +#include // for rand() calls +#include // for testing assert() +#include // for boolean values: true, false #define MAX 20