Algorithms

Binary Search
AskAI

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.

Sum of integers at even indices
AskAI

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).

Shortest Path in a Directed Graph
AskAI

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.

Reversing a Singly Linked List
AskAI

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.

Binary Search: Find Target Value in Sorted Array
AskAI

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.

Binary Search
AskAI

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.

Longest Path in a 2D Array
AskAI

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.

TwoSum: Find Two Numbers That Add Up to a Specific Target Number
AskAI

The twoSum function should return the indices of two numbers in an array that add up to a specific target number.