Skip to content

Commit

Permalink
chore: use iwyu on divide_and_conquer/**.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
realstealthninja committed Sep 13, 2024
1 parent a3b719e commit 16ee49e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@
* @author [Ameer Carlo Lubang](https://github.com/poypoyan)
*/

#include <cassert> /// for assert
#include <cstring> /// for string
#include <iostream> /// for IO operations
#include <vector> /// for std::vector
#include <stdint.h> // for int64_t
#include <cassert> // for assert
#include <iostream> // for basic_ostream, operator<<, char_traits, cout, endl
#include <algorithm> // for max
#include <string> // for basic_string, string

/**
* @namespace divide_and_conquer
Expand Down
13 changes: 8 additions & 5 deletions divide_and_conquer/strassen_matrix_multiplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@
*
* @author [AshishYUO](https://github.com/AshishYUO)
*/
#include <cassert> /// For assert operation
#include <chrono> /// For std::chrono; time measurement
#include <iostream> /// For I/O operations
#include <tuple> /// For std::tuple
#include <vector> /// For creating dynamic arrays
#include <bits/chrono.h> // for duration, operator-, system_clock, time_point

#include <cassert> // for assert
#include <cstddef> // for size_t
#include <iostream> // for char_traits, basic_ostream, operator<<, cout
#include <type_traits> // for enable_if, is_integral, is_floating_point
#include <utility> // for operator==, pair
#include <vector> // for vector

/**
* @namespace divide_and_conquer
Expand Down

0 comments on commit 16ee49e

Please sign in to comment.