Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Count Odd Numbers in Array
00:00
5 left

Count Odd Numbers in Array

EasyPython

Problem

Count odd numbers in array.

Implement the function below to return how many values in the input array are odd. An odd number is an integer not divisible by 2; negative odd numbers also count.

Input and Output

nums is a list of integers. Return an integer count. The solution should run in linear time and use constant extra space.

Constraints

  • 0 <= len(nums) <= 1000
  • -10^9 <= nums[i] <= 10^9
  • All elements of nums are integers

Function Signature

def count_odd_numbers(nums):
Interviewer

Your question is Count Odd Numbers in Array. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.