2022-12-30 LeetCode - Algorithms - 1346. Check If N and Its Double Exist Problem1346. Check If N and Its Double Exist C#1234567891011121314public class Solution { public bool CheckIfExist(int[] arr) { bool existed = false; for(int i = 0; i < arr.Length; i++) { for(int j = 0; j != i && j < arr.Length; j++) { if (arr[i]==2*arr[j] || arr[i]*2==arr[j]) { existed = true; break; } } } return existed; }} Submission Detail Accepted Runtime 105 ms, Beats 80.20% Memory 41 MB, Beats 14.60% Newer Word of the year 2022 - Gaslighting, Goblin mode, permacrisis, woman, ••• Older My English Words List - December - 2022