Language / File Affected: C++ – [File](https://github.com/MAZHARMIK/Interview_DS_Algo/blob/master/Design/Implement%20Router.cpp) **Root Cause** In the method Router#getCount, the variables **i** and **j** were referenced as **leftIdx** and **rightIdx**. Leading to compilation failure. Updated the `Implement Router.cpp` C++ solution to reflect this fix, [PR-78](https://github.com/MAZHARMIK/Interview_DS_Algo/pull/78)