Skip to content

3978. Unique Middle Element

Description

You are given an integer array nums of odd length n.

Return true if the middle element of nums appears exactly once in the array. Otherwise return false.

Β 

Example 1:

Input: nums = [1,2,3]

Output: true

Explanation:

The middle element of nums is 2, which appears exactly once.

Thus, the answer is true.

Example 2:

Input: nums = [1,2,2]

Output: false

Explanation:

The middle element of nums is 2, which appears twice.

Thus, the answer is false.

Β 

Constraints:

  • 1 <= n == nums.length <= 100
  • n is odd.
  • 1 <= nums[i] <= 100

Solutions

Solution 1

1

1

1

1

Comments