Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Implement 1D Convolution
00:00
5 left

Implement 1D Convolution

MediumPython

Problem

IBM watsonx.ai preprocessing pipelines may need lightweight signal transformations before model inference. Implement a valid one-dimensional convolution without using numerical libraries.

Given a non-empty numeric signal and a non-empty numeric kernel, return their valid convolution. Valid convolution uses no padding and includes only positions where the entire kernel overlaps the signal. The kernel must be reversed before multiplication, so the result at position i is:

output[i] = sum(signal[i + j] * kernel[m - 1 - j] for j in range(m)), where m = len(kernel).

Formal Specification

  • Input: signal, a list of integers or floating-point values, and kernel, another such list.
  • Output: A list of numeric values with length len(signal) - len(kernel) + 1.
  • Preserve exact arithmetic for integer inputs. Do not mutate either input list.

Constraints

  • 1 <= len(kernel) <= len(signal) <= 10^5
  • Each value is an integer or floating-point number in the range [-10^6, 10^6]
  • Inputs are non-empty lists
  • The input lists must not be mutated

Function Signature

def valid_convolution(signal, kernel):
Interviewer

Your question is Implement 1D Convolution. 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.