You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In particular, make sure you write your name and the date in a delimited comment at the beginning of your file.
80
80
81
81
82
-
<!--
83
-
84
82
## Solution
85
83
86
-
A possible solution is shared [in this archive](./code/projects/AList.zip).
84
+
A possible solution is shared [in this archive](./code/projects/AList.zip). It does *not* implement a `ToString` method or a method to insert at a given index, but complete all the bonuses otherwise: in particular, the `Main` method exemplifies numerous tests.
87
85
88
86
Note that it does not use a "counter" to keep track of how many elements are in the list, but instead resize the array and create a new array of the appropriate size when needed: this is less efficient, since copying the array is linear in its size, but gives a more compact code.
0 commit comments