word count exercise, initial commit
This commit is contained in:
parent
c252a1a93d
commit
59060755a5
5 changed files with 261 additions and 0 deletions
12
cpp/word-count/word_count.cpp
Normal file
12
cpp/word-count/word_count.cpp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#include "word_count.h"
|
||||
|
||||
namespace word_count {
|
||||
|
||||
using namespace std;
|
||||
|
||||
Words words(const string &str)
|
||||
{
|
||||
return Words();
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue