Update sorting/bubble_sort_2.c

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Gabriel Fioravante 2021-02-17 22:46:57 -05:00 committed by GitHub
parent 6c6879fe52
commit 97dfc06875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -10,9 +10,9 @@
* @author [Gabriel Fioravante](https://github.com/northernSage)
*/
#include <stdlib.h> // for rand() calls
#include <assert.h> // for testing assert(<expr>)
#include <stdbool.h> // for boolean values: true, false
#include <stdlib.h> /// for rand() calls
#include <assert.h> /// for assert(<expr>)
#include <stdbool.h> /// for boolean values: true, false
#define MAX 20