This problem involves finding the index of a given target value in a sorted array of integers. If the target is not found, the index where it would be inserted is returned.
Given a list of integers, the sum of the integers at even indices is returned. So for the input list [1, 2, 3, 4, 5], the output would be 6 (2 + 4).
This technical problem deals with finding the shortest path between two nodes in a directed graph. An example input and output is given in the problem description.
To reverse a singly linked list, we simply need to iterate through the list and reverse the pointers of each node. This can be done in place, without creating a new list.
This problem requires the use of a binary search algorithm to find a target value in a sorted array. If the target value is found, the index of that value is returned. If the target value is not found, -1 is returned.
This problem involves searching for a given value in a sorted array of integers. If the value is found, the index of the target value is returned; if not, -1 is returned.
Given a 2D array of integers, find the longest path of consecutive integers starting from the top left corner of the array. The path can move in 4 directions: up, down, left , or right.
The twoSum function should return the indices of two numbers in an array that add up to a specific target number.