prime_factors: iteration 1
This commit is contained in:
parent
f974987cc9
commit
b883406671
2 changed files with 35 additions and 0 deletions
13
cpp/prime-factors/prime_factors.h
Normal file
13
cpp/prime-factors/prime_factors.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#pragma once
|
||||
|
||||
#define EXERCISM_RUN_ALL_TESTS
|
||||
|
||||
#include <vector>
|
||||
|
||||
namespace prime_factors {
|
||||
|
||||
typedef std::vector<int> factors_t;
|
||||
|
||||
factors_t of(int number);
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue