- Published on
## Distinct ### ๋ฌธ์ ๋ฐฐ์ด A์์ uniqueํ ์ซ์๊ฐ ๋ช ๊ฐ ์๋์ง ๋ฆฌํดํ๋ผ. ### ํ์ด ```javascript function solution(A) { return [...new Set(A)].length } ``` Set์ ํ์ฉํ๋ฉด ์ฝ๊ฒ ํ ์ ์๋ค. Set์ด ์๋๋๋ผ๋ object๋ฑ์ ํ์ฉํด๋ณด๋ฉด ๋๋ค. https:...