early program template
This commit is contained in:
@@ -0,0 +1,12 @@
|
|||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
std::string DNAStrand(const std::string& dna){
|
||||||
|
std::vector<std::string> DNA;
|
||||||
|
for (auto d : dna)
|
||||||
|
DNA.push_back(d);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user