Updated various typoes and removed some unneeded code

This commit is contained in:
2020-07-11 13:35:37 -04:00
parent c72754dcf8
commit 0caa043b59
17 changed files with 31 additions and 33 deletions

View File

@@ -42,7 +42,7 @@ private:
//Functions
//This function acts as a handler for moving the position on the grid and counting the distance
//It moves right first, then down
void move(int currentX, int currentY, uint64_t& numOfRoutes);
void move(int currentX, int currentY);
public:
//Constructor
Problem15();