One Dimensional Array Append
excerpt: Under the hood look at how to add an element to the end of an array. tags: array-append
Solution Outline
- Create a temporary array larger than the original array
- Copy the input array values to temp array
- Assign the input value to the last position
- Change the reference of input array to temp
|
|