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 πͺπΎ π» π»
Top comments (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 π