Challenge 1: Remove Even Integers From an Array
Explore how to write a C# function to remove even numbers from an array while maintaining only odd integers. Understand the problem requirements, handle dynamic arrays, and practice returning results in the expected format.
We'll cover the following...
We'll cover the following...
Introduction
Here is a short guide to these challenge lessons.
- 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.
- The skeleton code given has a function definition, which only has the
// Write your code herecomment in the