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 条评论:
real or joke?
real or joke?
发表评论