Chapter 117: Interviews are manual work

At the end of 13 years, there were basically not many artificial intelligence-related jobs in Huaguo.

There are only those research posts in the Baidu Artificial Intelligence Research Institute, which can be regarded as serious AI posts.

Not to mention the majors, it was not until 16-17 that the first batch of related undergraduate majors were officially opened.

By the time the first two classes of artificial intelligence graduates came out, it had been almost 21-22 years.

At this point in time, the Internet and artificial intelligence markets have cooled down slightly, ushering in a relative "cold winter".

"No matter what major it is, it's probably too late to wait for it to become popular." When Meng Fanqi applied for the electrical exam, the treatment was also quite good.

It's just that after seven years of reading, the world is already a sea of vicissitudes.

The position given by Meng Fanqi at this time is the real ticket at the beginning of the ten-year artificial intelligence wave.

Since the urgent recruitment is for engineers related to iOS and Android mobile phone systems, Meng Fanqi's recruitment picture directly marked the salary for several related positions.

As for the positions that are not in such a hurry, but will be needed later, Gao Wen and the lawyer are ready to bring in a friend who is engaged in human resources to take care of this part of the matter.

As a pure engineer, Meng Fanqi hated the form of an outsider's management.

Therefore, he is only responsible for the recruitment and salary of familiar technical personnel, and the rest of the positions still need to be controlled by professionals.

However, the price offered by Meng Fanqi, a small start-up, to technical personnel can be said to be unique in the industry.

Like the three founders of Mi Yu before, Shanghai Jiaotong University, the best jobs that can be found in this season, most of them have a monthly salary of more than 10,000 or 20,000.

And Meng Fanqi was the first ten or so members, and the basic salary was about 30,000 to 40,000.

Five insurances and one housing fund are fully paid, and bonuses and options are calculated separately according to the contribution and actual results.

"I'm super?? 500,000 base salary a year before tax?? Computers are so profitable now?? ”

This treatment, which is very common in the artificial intelligence industry a few years later, suddenly saw that the effect was still unusually shocking.

"My God, more than 500,000 yuan a year before taxes, just paying taxes is almost higher than my annual salary..."

"People in their twenties give 500,000 yuan to employees, but I can't earn 50,000 yuan a year in my twenties..."

"Does Xueba recruit girlfriends? My Lolita sound! Meng Fanqi clicked on it and saw that the gender was male.

Of course, Meng Fanqi also knows that recruiting people at this time, especially App-related engineers, is actually not necessary to drive so high.

It's not that you can't recruit people if you open about 20,000.

But he made so much money, so why bother to buckle the rope?

If you are reborn and make money and treat yourself as a capitalist, then you will not become the kind of person you once hated the most.

Meng Fanqi's ideas and three views are still serious working class, the company makes money, and he will never be stingy with bonuses to employees.

Besides, there must be brave men under the so-called heavy rewards.

The pace in the early stage is tight, the task is difficult, and people with a poor level may not be able to hold on.

Although the salary is high, not everyone is eligible to get it.

After all, the first batch of places is limited, and Meng Fanqi does not have so much time to devote all of them to the interview.

Among the private messages around the neck and the mailbox left around the neck, resumes have gradually begun to be received.

Meng Fanqi has screened a little, and those who recruit must have App-related project experience, and those in school can be relaxed, but the school and grades are slightly better.

Because Meng Fanqi did not discount the salary of the three-month internship period, this position is extremely tempting for college students seeking internships in their senior or junior years.

Not only several famous schools in Shanghai have submitted a lot of resumes, but even the surrounding provinces and cities, and even Yanjing have a lot of resumes.

Meng Fanqi does not discriminate against academic qualifications, he makes judgments more based on the inspection of interviews.

It's a pity that there are too many resumes, and he is not allowed to interview each one in terms of time and energy.

When sifting through resumes, Meng Fanqi was a little embarrassed. I'm an ordinary 211, and now I'm completely non-C9 experience, and I don't even give an interview.

Don't say it, it feels so cool!

I invited more than a dozen students from Shanghai Jiaotong University, Fudan University and other universities to come to Caohe, and made more than a dozen online interviews with Jinghua and Yenching University.

Coupled with those who are recruited by the society, it can be said that they will enter completely in three or five days.

Fortunately, there is no need to talk about each of them separately for interviews with students who are still studying, Meng Fanqi is basically four or five together, and he comes up to do a basic algorithm problem first.

It can be said that the first question at the beginning can be said to be the standard configuration of many positions on the Internet later, this kind of topic has little to do with the position, and the things examined are basically not used after entry.

But for college students, it is indeed a good way to test their knowledge of basic data structures.

Meng Fanqi's questions are not a very difficult type, and at this time, the brushing platform is not particularly popular even in the United States, and it is far from entering the country.

Considering the situation in China at this time, most of the questions in the interview are controlled at the easy level, and occasionally there are one or two questions of slightly medium difficulty.

"Give you an integer array nums, and determine if there is a triplet [nums[i], nums[j], nums[k]] satisfies i != j, i != k, and j != k, and also satisfies nums[i]+ nums[j]+ nums[k]== 0. Please return all triples that have a sum of 0 and are not duplicates.

Note: Duplicate triples cannot be included in the answer. ”

This question is a string of numbers, which three add up to 0, which belongs to the easiest batch of questions in the medium difficulty type.

For example, [-1,0,1,2,-1,-4], then there are two sets of numbers, [-1,-1,2],[-1,0,1]], and the sum of the three is equal to 0.

Topics like this require simplicity and easy to understand, but the code is far from being as easy to implement as everyone thinks.

Perhaps, according to this example, many people can quickly make procedures that meet the requirements, but they may not be able to take into account all kinds of special cases.

"The easiest way is to triple loop and then deduplicate the hash table, which is a cubic level of complexity, so you don't need to write it."

As soon as these words came out, several students who hesitated to start coding the code stiffened and began to think hard again.

There were a few people who were crackling for a while, Meng Fanqi took a look, there was nothing wrong with his thinking, and he added double pointers.

Although this question is not difficult, there are not many good solutions to it, and this trick is standard.

Meng Fanqi took a closer look, and there were two classmates who did a really good job in detail.

The judgment of whether the enumeration coincides, the confirmation of the pointer position relationship, whether the pointer coincides, and the setting of the conditions for loop exit are all quite careful.

This is quite rare at a time when the force buckle and the noodle warp are not popular.

"What about the complexity of the algorithm?" Meng Fanqi asked softly.

"Time is quadratic, space is logN." Xia Yan is a very thin and white young man, and his family economic conditions are average when he comes out of the town.

Meng Fanqi offered a price he had never thought of, so he took the test very seriously, and it was a great opportunity to reduce the pressure on his family.

"Have you ever participated in the ICPC? This kind of topic is too basic for you. "ACM-ICPC is a large-scale programming competition for college students, and the results in it are quite valuable.

Until 2023, the regional gold medal is basically a pass to the first three levels of the interview.

Xia Yan smiled shyly and with a little pride: "I won the gold medal in the division with two friends, and the two of them are here today." ”