Skip to content

Commit 93a700c

Browse files
authored
style: remove unused vector includes (#2945)
1 parent da53b26 commit 93a700c

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

backtracking/graph_coloring.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
#include <array> /// for std::array
2222
#include <iostream> /// for IO operations
23-
#include <vector> /// for std::vector
2423

2524
/**
2625
* @namespace backtracking

data_structures/trie_tree.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include <iostream>
1313
#include <memory>
1414
#include <string>
15-
#include <vector>
1615

1716
/** \namespace data_structures
1817
* \brief Data-structure algorithms

divide_and_conquer/karatsuba_algorithm_for_fast_multiplication.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
#include <cassert> /// for assert
1616
#include <cstring> /// for string
1717
#include <iostream> /// for IO operations
18-
#include <vector> /// for std::vector
1918

2019
/**
2120
* @namespace divide_and_conquer

graph/breadth_first_search.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
#include <map>
5353
#include <queue>
5454
#include <string>
55-
#include <vector>
5655

5756
/**
5857
* \namespace graph

0 commit comments

Comments
 (0)