1. Skip Header Row in Data Array
Background
A data analyst has an array where the first element is a column header that should not be included in calculations.
Problem
Manually removing the header each time is inefficient and prone to errors.
How to use
Input the array with the header as the first element, and set n to 1 to drop it.
Outcome
The resulting array contains only the data rows, ready for further processing.