Newer
Older
//
// Created by anvia on 1/31/2018.
//
#include <string>
#include <unordered_map>
#include <vector>
{
vector< string > splitText = splitStr ( originalText, ' ' );
string lowerString = "";
for ( int i = 0; i < splitText.size ( ); ++i )
{
lowerString = toLower ( splitText[ i ] );
if ( !isStopWord ( lowerString ) )
{