Swift coding challenge!!
Common Character Count, given two strings find the number of common characters between them.
I have included a solutions video!! The video gives some insight into how Iโve solved the problem. Donโt forget to try the problem out BEFORE checking out the solution video and solution code ๐ ๐
If you have a coding challenge you want me to solve feel free to drop a comment or message me with the problem!! ๐ ๐ letโs get swole ๐ช๐พ ๐ป ๐ป
Discussion (2)
If I was given this question during an interview I'd have asked for clarification, as to me there are 2 common characters between the two strings: a and c. Why do I need to count a 2 times?
Under your assumption, the code you posted is correct and I think it is the easiest.
Only a little detail: characters is deprecated and you can iterate through the string by writing
for char in string {
...
}
Thanks for the tip about characters ๐, I didn't realize it was deprecated. Back to for loops ๐