Tagged Questions
8
votes
10answers
6k views
Word Anagram Hashing Algorithm?
Given set of words, we need to find the anagram words and display each category alone using the best algorithm
input:
man car kile arc none like
output:
man
car arc
kile like
none
the best ...
2
votes
3answers
146 views
Fast min on span
Given a list of arrays and lots of setup time I need to quickly find the smallest value in some sub-span of each array. In concept:
class SpanThing
{
int Data;
SpanThing(int[][] data) /// ...
1
vote
3answers
45 views
How to detect threshing in accelerometer?
I'm writing an application controlled by an accelerometer built into a wrist watch. I want one of the commands to be "wildly swinging your forehand". How do I detect it and measure for how long it ...
0
votes
2answers
72 views
How should I filter this data?
I have a several series of data points that need to be graphed. For each graph, some points may need to be thrown out due to error. An example is the following:
The circled areas are errors in the ...