Scala

You are currently auditing this course.
41 / 53

Scala - Assessment - Declare an array with range

One of the ways to define an array in Scala just to provide the range, instead of mentioning all the elements in the array definition.

We need to use range keyword for such purposes. For example, range(1,5,1) will define an array equivalent to (1,2,3,4) where first 2 arguments, '1' and '5' are range, and third argument '1' is incremental value. Note that the resulting array doesn't include the second argument, that is '5' in this case.

INSTRUCTIONS
  • Switch to Jupyter tab.

  • Import Array._ in order to use the range function.

  • Declare an array of numbers, named numArray, having elements from 10 to 20 with an increment of 2.

  • Press Shift+Enter.

  • Submit your answer.


Loading comments...