Connect to GitHub to push and pull your project files to a repository.
On the page that opens, create a token with repo scope, copy it, then paste it below.
Paste the personal access token you created on GitHub with repo scope.
Click Refresh to load commit history
Exercise Info
Goals
Work classes and objects in C++
Work with dynamic object references in C++
Work with STL classes in C++
Instructions
In addition to a push_back method, the STL list class also has a push_front method to add things to the front of a list in constant time (i.e. without having to loop), regardless of the list size. Use this method to fill a list with the reverse of the elements in another list