w3resource

Swift Array Programming Exercises: Create a new array taking the first element from two given arrays of integers

Swift Array Programming: Exercise-23 with Solution

Write a Swift program to create a new array taking the first element from two given arrays of integers. If either array is length 0, ignore that array.

Pictorial Presentation:

Swift Array Programming Exercises: Create a new array taking the first element from two given arrays of integers

Sample Solution:

Swift Code:

func new_array(_ array1: [Int], _ array2: [Int]) -> [Int] {
    
    if array1.count == 0 && array2.count == 0 
    {
        return []
    } 
    else if array1.count == 0 && array2.count != 0
    {
        return [array2.first!]
    } 
    else if array1.count != 0 && array2.count == 0 
    {
        return [array1.first!]
    }
    else
    {
        return [array1.first!, array2.first!]
    }
}

print(new_array([1, 2, 3], [4, 5, 6]))
print(new_array([], []))
print(new_array([1], [2]))
print(new_array([1, 5], []))

Sample Output:

[1, 4]
[]
[1, 2]
[1]

Swift Programming Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Swift program to create a new array, taking first two elements from a given array of integers. If the length of the given array is less than 2 use the single element of the given array.
Next: Write a Swift program to count the number of even integers in the given array.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/swift-programming-exercises/array/swift-array-exercise-23.php