Skip to content

Commit

Permalink
Update Period.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
mihirp161 authored Sep 21, 2019
1 parent 695d1df commit 59169d8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Period.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
Author: Mihir K Patel
Purpose: Following is an implementation file for the Period.h. This contains function defintions
for those in its header file. Main properties of this file are:
1) To apply prebuilt function of C++ to remove numbers and punctutations in a user string.
2) To check y-n options with a local try_catch block.
3) To have a helper function that uses recursion to return the min using C++ built-in function.
4) Finally, an algorithmn that inserts, delete, or replace a character of two strings to make them equal.
for those in its header file. Main properties of this file are:
1) To apply prebuilt function of C++ to remove numbers and punctutations in a user string.
2) To check y-n options with a local try_catch block.
3) To have a helper function that uses recursion to return the min using C++ built-in function.
4) Finally, an algorithmn that inserts, delete, or replace a character of two strings to make them equal.
*/
#include "Period.h"
/*Default constructor for Period class*/
Expand Down Expand Up @@ -86,4 +86,4 @@ int Period::did_you_mean_this(std::string itr_para, std::string to_look_para, si
return edits_grid[itr_len_para][to_look_len_para]; /*After recursion is over, simply return the number of edits*/
}

Period::~Period() { }
Period::~Period() { }

0 comments on commit 59169d8

Please sign in to comment.