Problem Description
You are given an integer array nums
. Return an integer that is the maximum distance between the indices of two (not necessarily different) prime numbers in nums
.
Key Insights
- A prime number is defined as a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers.
- The maximum distance can be found by identifying the first and last occurrences of prime numbers in the array.
- The constraints guarantee that there is at least one prime number in the input.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the input array nums
, since we traverse the array once.
Space Complexity: O(1), as we are using a constant amount of extra space for tracking indices.
Solution
To solve the problem, we will:
- Iterate through the array while checking each number for primality.
- Keep track of the first and last indices where a prime number is found.
- Calculate the maximum distance between these two indices.
- Return the computed maximum distance.
The algorithm relies on a simple primality test for numbers in the range from 1 to 100, which can be efficiently checked.