-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update 3.cpp #12
base: master
Are you sure you want to change the base?
Update 3.cpp #12
Conversation
@@ -12,12 +14,30 @@ struct List | |||
|
|||
// Add should create new List object, initialize it by value and add it to the end of the list. | |||
// It should return pointer to the added List object. | |||
List* Add(List* l, int value) | |||
List* Add(List* beg, int value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Зачем это переименование имени аргумента?
Add(begin, 3); | ||
Add(begin, 4); | ||
Add(begin, 5); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
вважаєш, що коротше не треба?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
думаю, что для реализации алгоритма, это не принципиально)
No description provided.