Daily Leetcode Solution
15 comments
Caleb Akeju
6 hours ago
I did not know a fromCharCode() function exists in JS unitl now. You could just pass any integer and it would return the string equivalent.
Caleb Akeju
5 days ago
Longest Common prefix.
Make the first value the initial prefix, loop from the second to last and do another inner loop to remove character from prefix to match current item, if there no matches return "". Repeat for all items.
#leetcode
Caleb Akeju
1 week ago
Funny how I have not solved a problem this month and today's 12. :o
So, I am presently learning Go. If I don't quit, by next month or next year, I will be posting solution in Go.