Skip to main content

21 docs tagged with "array"

View all tags

Arrays in Data Structures and Algorithms

An array is a collection of items stored at contiguous memory locations. It is a data structure that stores a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.

Arrays in Data Structures and Algorithms

An array is a collection of items stored at contiguous memory locations. It is a data structure that stores a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.

Combination Sum

Solving the Combination Sum problem using a recursive backtracking approach.

Contains Duplicate

Given an integer array nums, return true if any value appears at least twice in the array, and return false if every element is distinct.

Left and Right Sum Differences

The Left and Right Sum Differences problem on LeetCode involves finding the absolute difference between the sum of elements to the left and right of each index in an array.

Maximal Rectangle

Finding the largest rectangle containing only 1's in a binary matrix using a monotonic stack approach.

Maximum Building Height

Finding the maximum possible height of a building given a set of restrictions using a two-pass constraint propagation approach.

Maximum Ice Cream Bars

Finding the maximum number of ice cream bars that can be bought with a given amount of coins using a greedy approach.

Maximum Points You Can Obtain from Cards

The Maximum Points You Can Obtain from Cards problem on LeetCode involves finding the maximum score by taking exactly k cards from either the beginning or the end of an array.

N-Queens

Solving the classic N-Queens puzzle using a backtracking approach.

Sum of Subarray Ranges

The Sum of Subarray Ranges problem involves finding the sum of the difference between the maximum and minimum elements of all subarrays using a Monotonic Stack.

Weighted Word Mapping

Solution to the Weighted Word Mapping problem across C++, JavaScript, Java, and Python with complexity analysis.

Word Search

Solving the Word Search problem using recursive backtracking and Depth-First Search (DFS).