This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "properties": { | |
| "search_result_preference": "most_recently_used", | |
| "search_type_preference": "application_name", | |
| "maximum_number_of_results": 10, | |
| "open_powerlauncher": { | |
| "win": false, | |
| "ctrl": true, | |
| "alt": false, | |
| "shift": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Remove duplicate characters from a given string | |
| * Time Complexity: O(N) | |
| * @param {string} s - string of characters | |
| * @return {string} | |
| */ | |
| const removeDuplicateLetters = s => { | |
| // initialize new Set object with the given string to remove duplicates | |
| const letters = new Set(s); |