Problem Statement
Given an array, return true if all the elements are Fixnums.
You need to write array_of_fixnums?
method to accomplish this task.
Example:
Given [1,2,3], the method should return true
Note: This problem needs knowledge of topics you haven't covered yet. Reading List
Given an array, return true if all the elements are Fixnums.
You need to write array_of_fixnums?
method to accomplish this task.
Example:
Given [1,2,3], the method should return true
You are yet to work on: