summaryrefslogtreecommitdiff
path: root/9p39.cpp
blob: c50c769fc758d04a51a3de12a7a93aff6f5cd20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <iostream>

/*
 *
 * 9.39
 *
 *
 */

int main () {

	/*	  
	  vector<string> svec; // Creates vector
	  svec.reserve(1024); // Reserve 1024 so it can grow 1024 times before reallocating
	  string word;
	  while (cin >> word) {  // Get strings
	  svec.push_back(word);
	  }
	  svec.resize(svec.size()+svec.size()/2); // We resize again
	 */
	return 0;
}