algorithms
algorithms copied to clipboard
Algorithms notes & LeetCode/Codewars solutions by Node.js, Swift and Haskell
Results
3
algorithms issues
Sort by
recently updated
recently updated
newest added
Added a medium question called Number Of Islands in swift folder which is real fun to solve and implement. Hope you merge it :)
```js function solve(str) { var maxStr = '', tmpStr = ''; var hashed = {}; for (const c of str) { if (!hashed[c]) { hashed[c] = true; tmpStr += c;...