The interview will be an initial informal chat about CV and expectations, followed by a coding exercise. Coding is done in Visual Studio. There is no specific time allowed to complete the exercise.
Interview questions [1]
Question 1
Pascal's triangle is a triangular array of integers constructed with the following formula: The first row consists of the number 1. For each subsequent row, each element is the sum of the numbers directly above it, on either side. Given an input k, return the kth row of Pascal's triangle.