0
votes
5answers
50 views
Problem in using Sed to remove leading and trailing spaces
Hi all,
I am using the following code to remove both leading and tailing spaces from all lines of a file A.txt
sed 's/^[ \t]*//;s/[ \t]*$//' ./A.txt > ./B.txt
The problem occu …
0
votes
1answer
36 views
How do i go about matching three fields from two tables in order to update the same tables in case of match
Given two tables A and B in a MySQL Database, how can one update a field in a row of table A if and only if certain fields in the fore-mentioned row in table A exactly match fields …
1
vote
1answer
164 views
Maximum bipartite graph (1,n) “matching”
I have a bipartite graph. I am looking for a maximum (1,n) "matching", which means that each vertex from partitation A has n associated vertices from partition B.
The following f …
0
votes
1answer
298 views
How to get color combination compatible to both Excel and SSRS
Hi,
Can any one let me know
How to get color combination compatible to both Excel and SSRS
Thanks in advance
4
votes
5answers
133 views
“Distance” between colours in PHP
Hi
Im looking for a function that can accurately represent the distance between two colours as a number or something.
For example I am looking to have an array of HEX values or R …
0
votes
1answer
15 views
Query for match in MySQL ListOfValues
Whats the best way to query MySql when I want the query return all rows where at least one value in a list of values matches at least one value in a list of values?
example
If my …
0
votes
0answers
44 views
How to check if cards in hand match cards on table?
There are 8 cards on the table, with four faces visible and four hidden. Click on a card to turn it and if there's a pip-match or suit-match, show sparks around the associated card …
0
votes
1answer
57 views
rolling checksums in the rsync algorithm
I'm trying to understand how the rsync algorithm works with respect to rolling checksums and blocks that match in a staggered fashion.
The wikipedia page seems to suggest that the …
0
votes
2answers
56 views
Multiple events matching algorithm
Hi,
I have a task to match multiple events(facts) with each other by some their properties.
As a result of events matching some action should be generated. Action can be generated …
0
votes
1answer
92 views
matching against words with accent marks, umlauts, etc. mysql/php
I've got a website for which I just wrote a great search function. I just realized that I have some words in my db with accent marks. So when somebody types in the word to search f …
5
votes
2answers
108 views
Can a range be matched in Scala?
Is it possible to match a range of values in Scala?
For example:
val t = 5
val m = t match {
0 until 10 => true
_ => false
}
m would be true if t was between 0 an …
0
votes
3answers
383 views
Bipartite Matching
How can I implement a bipartite matching algorithm (probably based on a max-flow algorithm) in C or C++ ?
To be specific, I have this input in a file:
(1,3)
(1,5)
(2,5)
(M,F) --> …
1
vote
3answers
158 views
Regex to match content of HTML body in PHP
I need a regex in php for matching contents between tags of an element, e.g. <body> and </body> with the perl compatible preg_match.
So far I tried with:
// $content …
2
votes
1answer
176 views
Hungarian Algorithm and multiple factors
I have a situation where I need to allocate people to several events. If we just had a price as a factor, it would be fine, but there is a number of factors that come in.
First, s …
0
votes
0answers
16 views
A/V pattern matching software
Hi All,
I need a software that can do pattern matching of audio and video on a stream of data captured from say a Radio/TV.
The software will know what to look for in the stream …
