Thursday Code Puzzler: Needles In the Haystack
Join the DZone community and get the full member experience.
Join For FreeBy now you should be familiar with our Thursday Code Puzzler slot. The idea is simple: solve the coding problem as efficiently as you can, in any language or framework that you think is suitable.
Note: Even though there really is nothing stopping you from finding a solution to this on the internet, try to keep honest, and come up with your own answer. It's all about the participation!
Find The Needles in the Haystack
This week it's another classic string based question - to find the number of occurances of a given String (needle) in another (haystack). So the method signature would look like:
public int findNeedleOccurances(String needle, String haystack)
Try to make the solution as efficient as possible, and if you do get to run it post up your timings, or even better, the Big O notation for your solution.
Opinions expressed by DZone contributors are their own.
Comments