#codewars
Read more stories on Hashnode
Articles with this tag
Hashing · This is a CodeWars problem that requires returning a HashMap of the count of characters within a string. Approach 1: HashMap def count(s): ...
Strings · Solution function likes(names) { if (names.length >= 4){ return `${names[0]}, ${names[1]} and ${names.length - 2} others like this`; } ...