...

/

Challenge 1: Remove Even Integers From an Array

Challenge 1: Remove Even Integers From an Array

The challenge consists of a given array from which you need to remove all even integers.

Introduction

Here is a short guide to these challenge lessons.

  1. The function definition is always given in the problem statement with the expected arguments and function name to be used. If you change the name in the solution, your code will not compile.
  2. The skeleton code given has a function definition, which only has the // Write your code here comment in the
...