在我的一个函数中,我需要检查另一个数组是否包含特定的字符串或UIColor。我永远不知道它是包含一个对象,还是包含另一个对象,或者两者都包含。我怎样才能正确地检查一个数组是否包含UIColor?// roundItem comes from Array<AnyObject> and reads: UIDeviceRGBColorSpace 0.160784 0.501961 0.72549 1let btnInfo: <
我想扫描一个JS数组,并确定是否所有元素都是唯一的,或者数组是否包含重复的元素。例子:my_array2 = [1, 1, 1]my_array1 must be return true, because thisarray element is unique
and array2 must be return false, because this ar