Tagged Questions
The longest-prefix tag has no wiki summary.
25
votes
22answers
3k views
Find the longest common starting substring in a set of strings
This is a challenge to come up with the most elegant JavaScript, Ruby or other solution to a relatively trivial problem.
This problem is a more specific case of the Longest common substring problem. ...
4
votes
4answers
552 views
Longest Prefix Matches for URLs
I need information about any standard python package which can be used for "longest prefix match" on URLs. I have gone through the two standard packages ...
2
votes
4answers
338 views
How to interpret an IP address block?
If I have a block of private IP addresses such as 171.58.0.0/12, does this mean that I essentially bitwise AND the 32-bit version of 171.58.0.0 with 32 bits of 1's, the last 12 of which are 0'd out, ...
0
votes
2answers
71 views
All Common Subsequences in Array of Strings
I'm trying to find ALL common subsequences in an array of strings in ruby not just the longest single subsequence.
This means that if the input is
["aaaF hello", "aaaG hello", "aaaH hello"]
The ...
0
votes
1answer
89 views
SQL longest prefix String
I have a loop that executes a query N times through a DAO. In my case, I have an object with a property that has the value "123456789". In the first turn, it executes a query on a particular table to ...
0
votes
3answers
91 views
Can you use the browser specific prefix in front of all css tags?
Can you use the browser specific prefix in front of all standard tags?
e.g.
#div{
padding:20px;
-moz-padding-bottom:10px;
}
is the above valid CSS for ensuring Firefox has a different bottom ...