Introduction

Greetings! Welcome to our lesson today, where we'll unravel a fascinating aspect of array manipulation. Here's the question: How would you traverse an array, not from the beginning to the end, or vice versa, but from the center outward in either direction? Today's lesson delves into this concept using TypeScript, which enhances the coding experience with its powerful type system. Brace yourself for a captivating learning journey focused on both logic and type safety.

Task Statement

Our task is to produce a new array, given an array of integers, that starts from the center of the original array and alternates direction towards both ends. That is, the first element of our new array will be the middle element of the original one.

After defining the starting point, we will alternate between elements to the left and to the right of this center until all elements have been included. If the length of the initial array is even, we first take the element to the left of the center, then the one to the right of the center, and proceed with the alternation sequence.

For example, given numbers = [1, 2, 3, 4, 5], the process is as follows:

  • Identify the middle element: 3 is the middle element of the array.
  • Start the new array with 3.
  • Alternate outward: First take 2 (left of 3), then 4 (right of 3).
  • Continue alternating: Next take 1 (left of 2), then 5 (right of 4).

The output is [3, 2, 4, 1, 5].

We will break down this seemingly complex task into manageable pieces to progressively build our TypeScript solution. Keep in mind an additional condition: the length of the array — represented as n — can range from 1 to 100,000, inclusive.

Solution Building: Step 1

First, let's establish the midpoint of our array. Our task requires us to expand our array from the center to the ends, so we divide its length by 2 using integer division. TypeScript enables us to use type annotations for better understanding and error checking. If the array's length is odd, we include the middle element in the newOrder array, as it has no counterpart. If the array's length is even, newOrder initially remains empty.

Here's how it looks in TypeScript:

Solution Building: Step 2

Successfully solving our task requires two pointers: left and right. These pointers are initialized to point to the elements immediately to the left and right of the middle element, respectively. TypeScript's strict type checking enhances readability and safety by defining these as numbers.

Here is the TypeScript function with the initialization of these pointers:

Solution Building: Step 3

With our pointers initialized, it's time to navigate the array and form our new order. TypeScript allows us to use the while loop to iterate from the center of the array to both ends. In each iteration, we push the elements at indices left and right to the newOrder array, decrement left by one, and increment right by one, ensuring type safety throughout.

Here's the complete TypeScript function:

Explanation for left-- and right++:

  • numbers[left--]: The expression first accesses the value at index left in the numbers array and then decrements left by 1. This ensures the current left element is pushed to newOrder before moving the pointer one step to the left.
  • numbers[right++]: Similarly, this expression first accesses the value at index right in the numbers array and then increments right by 1. This ensures the current right element is pushed to newOrder before moving the pointer one step to the right.

By implementing this approach, we have successfully created a new array that starts from the middle and alternates to the left and right ends of the original array, effectively fulfilling the requirements of our task!

Lesson Summary

Well done on reaching the end of this lesson! You've uncovered a riveting method of traversing and manipulating arrays using TypeScript. With TypeScript's type safety and clarity, you've built a more reliable and understandable solution. As the proverb goes, practice makes perfect. Hence, I encourage you to employ this concept in similar problems. Your exceptional journey in mastering algorithms with TypeScript has just begun. Embrace the challenge and happy coding!

Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal