In this article, we will solve Corporate Flight Bookings problem using prefix sum algorithm. In naive approach, it will take a quadratic O(N^2) time complexity but using a prefix sum approach we can get better time complexity.
Table of contents:
Problem StatementApproach 1: Naive methodApproach 2:
Prefix sum approachProblem Statement
The Corporate Flight Bookings problem is a problem of finding the total seats reserved for each n flights. we are given i length bookings array which contains ...
Published on November 28, 2022 00:30