{"ScriptPreparationCode":"var nums = Array(100000).fill().map((i,n)=\u003En)","TestCases":[{"Name":"Array includes","Code":"\r\n\r\n let smallest=1\r\n while(nums.includes(smallest)){\r\n smallest\u002B\u002B\r\n }\r\n return smallest\r\n\r\n","IsDeferred":false},{"Name":"Set has","Code":"\r\nnums = new Set(nums)\r\n let smallest=1\r\n while(nums.has(smallest)){\r\n smallest\u002B\u002B\r\n }\r\n return smallest\r\n","IsDeferred":false}]}