Re: [閒聊] 每日LeetCode

作者: Rushia (みけねこ的鼻屎)   2023-06-07 01:21:02
https://leetcode.com/problems/can-make-arithmetic-progression-from-sequence/description/
給你一個陣列判斷他有沒有辦法透過重新排列組成一個所有數字相差的值都一樣的序列。
Example 1:
Input: arr = [3,5,1]
Output: true
Explanation: We can reorder the elements as [1,3,5] or [5,3,1] with
differences 2 and -2 respectively, between each consecutive elements.
Example 2:
Input: arr = [1,2,4]
Output: false
Explanation: There is no way to reorder the elements to obtain an arithmetic
progression.
思路:
1.排序之後兩個兩個檢查是不是都一樣就好==
Java Code:

Links booklink

Contact Us: admin [ a t ] ucptt.com