chore: use iwyu on sorting/**.cpp

This commit is contained in:
realstealthninja
2024-09-13 15:39:40 +05:30
parent 19d136ae0f
commit a290ae7ee2
29 changed files with 186 additions and 142 deletions

View File

@@ -17,12 +17,13 @@
* arr = [2,8,9,1,7], after wiggle sort arr will become equal to [8,2,9,1,7]
*/
#include <algorithm>
#include <cassert>
#include <cstdint> /// for integral typedefs
#include <ctime>
#include <iostream> /// for io operations
#include <vector>
#include <cassert> // for assert
#include <cstdint> // for uint32_t
#include <ctime> // for time
#include <iostream> // for operator<<, basic_ostream, char_traits, cout, endl
#include <vector> // for vector
#include <cstdlib> // for rand, srand
#include <utility> // for swap
/**
* @namespace sorting