2007年4月2日星期一

Google CV filtering algorithm

The following algorithm is used by google to filter many CVs of applicants.
void filter(CV)
{
if(CV.university.contains("US")
or CV.university.contains("Tsinghua")
or CV.university.contains("Peking U"))
{
accept(CV);
}
else
reject(CV);

}

2 条评论: