Swift Array Programming Exercises: Test if every element is a 2 or a 5 of a given array of integers
Write a Swift program to test if every element is a 2 or a 5 of a given array of integers.
Pictorial Presentation:
Sample Solution:
Swift Code:
func num15(array_nums: [Int]) -> Bool {
for x in 0..<array_nums.count
{
if array_nums[x] != 2 && array_nums[x] != 5
{
return false
}
}
return true
}
print(num15(array_nums: [1, 2, 5, 4]))
print(num15(array_nums: [2, 5, 2, 5]))
print(num15(array_nums: [2, 5]))
Sample Output:
false true true
Swift Programming Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a Swift program to test if the number of 1's is greater than the number of 3's of a given array of integers.
Next: Write a Swift program to check if a given array of integers contains no 2's or it contains no 5's.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics