Skip to content

Commit

Permalink
중복된 문자 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
dudwns committed Apr 26, 2023
1 parent 604d505 commit 6da3ea3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Programmers/exam60.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
function solution(my_string) {
return [...new Set(my_string)].join("");
}

0 comments on commit 6da3ea3

Please sign in to comment.