动画电影的幕后英雄怎么说好_幕后编码面试-好与坏

动画电影的幕后英雄怎么说好

Interviewing is a skill in and of itself. You can be the best developer in the world but you may still screw up an interview.

面试本身就是一种技能。 您可以成为世界上最好的开发人员,但您仍可能会搞砸面试。

How many times have you come out of an interview and wondered what did I do wrong? Why did they reject me?

您多少次走出面试,想知道我做错了什么? 他们为什么拒绝我?

As a candidate, it helps a lot to understand the expectations in an interview.

作为候选人,在面试中了解期望值会很有帮助。

In this article, I want to show every aspiring candidate the difference between a good and a bad interview and how it is perceived by the interviewer.

在这篇文章中,我想向每位有抱负的候选人展示一次好与坏面试之间的区别以及面试官如何看待它。

We will compare and contrast two different interviews and learn from each of them so that you can tweak your actions to match the expectations.

我们将比较和对比两个不同的采访,并从每个采访中学习,以便您可以调整自己的操作以符合期望。

第一次面试 (First Interview)

Let me take the same question above "Inverting a binary tree".

让我在“反转二叉树”上方进行同样的提问。

Interviewer (I): Hi, Welcome to our company. I am xxx doing yyy. So tell me about yourself.

访员(I) :您好,欢迎来到我们公司。 我正在做yyy。 请你介绍你自己。

Candidate (C) : I am xxx. I have about 5 years of experience in Backend development. I love solving technical problems.....

候选人(C) :我是xxx。 我在后端开发方面有大约5年的经验。 我喜欢解决技术问题。

I: That's great. So shall we move on to the problem-solving part?

:太好了。 那么,我们应该继续解决问题了吗?

C: Sure!

C :当然!

I: So you are given a binary tree. I want you to invert the binary tree and print the resulting tree.

:所以给你一棵二叉树。 我希望您反转二叉树并打印结果树。

C: (Thinking in the head) Hmmm Ok. A binary tree has two children. So I am assuming inverting means printing from leaf to root. So the easiest way to do that is to traverse the tree till the end and find the leaves...

C :( 脑子里想)嗯。 一棵二叉树有两个孩子。 所以我假设反转意味着从叶到根打印。 因此,最简单的方法是遍历树直到末端并找到叶子...

I: (After 5 mins of complete silence)  Do you understand the question? Do you need any clarification?

:( 完全沉默5分钟后)您明白这个问题了吗? 您需要澄清吗?

C: I am clear. Now I am just thinking of a way to print the nodes starting from the leaf.

C :我很清楚 。 现在,我只是想一种从叶子开始打印节点的方法。

I: What do you mean to print the nodes starting from the leaf?

I :从叶子开始打印节点是什么意思?

C: So basically I should print from leaf to root right? It is easy to traverse until the leaf. But the hard part is traversing back?

C :所以基本上我应该从叶到根打印正确吗? 遍历直到叶子很容易。 但是困难的部分正在回溯吗?

I: Hmmm. Are you sure you understand the question right? Inverting a tree means you should swap the left and right children.

:嗯。 您确定您理解的问题正确吗? 倒树意味着您应该交换左右孩子

C: Sorry I am not clear. When you said invert I assumed you meant printing from leaf to root.

C :对不起,我不清楚。 当您说反转时,我假设您的意思是从叶到根打印。

I: That's alright (This is where you lost the job). Now that you are clear let's proceed.

:没关系(这是您失业的地方) 。 现在您已经清楚了,让我们继续。

C: Yes I am clear. So now I have to swap the left and right nodes. That's easy right.(Writes code in silence)

C :是的,我很清楚。 因此,现在我必须交换左右节点。 这很容易。 (无声地写代码)

def invert(node)t = node.left node.left = node.rightnode.right = treturn node
end

C: I am done with the code.

C :我已经完成了代码。

I: Cool. So what have you done here?

:好酷。 那你在这里做了什么?

C: I have inverted the tree by swapping the left and right nodes. So I keep a temp variable to achieve the same.

C :我通过交换左右节点来倒置树。 因此,我保留一个临时变量来实现相同目的。

I: (Trying to nudge towards a proper solution) But this swaps only the root node right?

:( 试图推动一个适当的解决方案)但是这仅交换根节点,对吗?

C:(Puzzled) Hmm yes, so the left and right children will be inverted. That's the question right?

C :( 困惑)嗯,是的,所以左右两个孩子都会倒过来。 这是对的问题吗?

I: (Still there is no clarity in question) So the question is the complete tree should be inverted. Not just the root.

:( 仍然没有明确的问题),所以问题是完整的树应该倒置。 不只是根源。

C: Oh geez. So it is not just the root but the complete tree. Am I right?

C :哦,天哪。 因此,它不仅是根,而且是完整的树。 我对吗?

I: Yes that is correct.

:是的,这是正确的。

C: Ok. Let me think about it.

C :好的。 让我想想。

(After 2 mins)

(2分钟后)

C: I think I got it. So basically I need to do the same algorithm I wrote for the whole tree. Am I right?

C :我想我明白了。 因此,基本上我需要为整个树执行相同的算法。 我对吗?

I: Yes, but how do you do that?

:是的,但是你怎么做呢?

C: (Starts writing Code)

C :( 开始编写代码)

def invert(node)n = Node.new(node.val)invert(node.left)invert(node.right)n.left = node.rightn.right = node.leftreturn n
end

So I am guessing this should work.

所以我这应该工作。

I: Hmmm, let me see. (Finds the issue. Can you?) I am not sure if it works. Can you please run me through it?

:嗯,让我看看。 (找到问题。可以吗?)我不确定是否可行。 你能帮我解决吗?

C: Sure. First I am inverting the left subtree, then the right subtree and then I am swapping them so that root is inverted.

C :好的。 首先,我反转左子树,然后反转右子树,然后交换它们,以便反转根。

I: Hmmm. But the left and right nodes are returning new nodes after the swap right? You are still swapping the old nodes.

:嗯。 但是左节点和右节点在交换权之后会返回新节点吗? 您仍在交换旧节点。

C: I am not sure what you mean by that. I think this will work for all cases.

C :我不确定你的意思。 我认为这适用于所有情况。

I: Great man! We have run out of time. Thanks for your time, it was lovely talking to you. HR will get back to you.

:太好了! 我们时间用完了。 谢谢您的宝贵时间,很高兴与您交谈。 人力资源部将尽快与您联系。

反馈 (Feedback)

Now, what do you think was the final decision and what was the interviewer's feedback? The hypothetical feedback would be something along these lines:

现在,您认为最终决定是什么?访调员的反馈是什么? 假设的反馈将遵循以下原则:

  • The candidate assumed a lot of things and did not clarify the problem.

    候选人承担了很多事情,没有阐明问题。
  • The candidate came up with the approach out of nowhere and there was no proper reasoning behind the approach taken. (Remember the silence in the interview?)

    候选人无所适从地提出了该方法,所采取的方法背后没有适当的理由。 (还记得采访中的沉默吗?)
  • The candidate was not clear with the requirements even in the implementation stage.

    即使在实施阶段,候选人也不清楚要求。
  • The candidate struggled with the implementation and he was not able to pick up hints pointing towards the solution.

    候选人在实施过程中苦苦挣扎,他无法获得指向解决方案的提示。
  • The candidate failed to identify the bugs in code, even after providing enough time and probing to check if the solution is correct.

    即使提供了足够的时间并尝试检查解决方案是否正确,候选人仍无法识别代码中的错误。

If this were an actual interview, the candidate would have been rejected. Now how should the ideal interview go?

如果这是一次实际的面试,候选人将被拒绝。 现在理想的面试应该如何进行?

第二次面试 (Second interview)

Interviewer (I): Hi, Welcome to our company. I am xxx doing yyy. So tell me about yourself.

访员(I) :您好,欢迎来到我们公司。 我正在做yyy。 请你介绍你自己。

Candidate (C) : I am xxx. I have about 5 years of experience in Backend development. I love solving technical problems.....

候选人(C) :我是xxx。 我在后端开发方面有大约5年的经验。 我喜欢解决技术问题。

I: That's great. So shall we move on to the problem-solving part?

:太好了。 那么,我们应该继续解决问题了吗?

C: Sure!

C :当然!

I: So you are given a binary tree. I want you to invert the binary tree and print the resulting tree.

:所以给你一棵二叉树。 我希望您反转二叉树并打印结果树。

C: (Thinking out loud) Cool. So a binary tree has two nodes. So what exactly is inverting? is it swapping the left and right?

C :( 大声思考)酷。 因此,二叉树有两个节点。 那么到底是什么呢? 左右互换吗?

I: Exactly. So left node should be on the right and vice versa.

:是的。 因此,左侧节点应位于右侧,反之亦然。

C: Ok. So in this case what happens?

C :好的。 那么在这种情况下会发生什么呢?

Provides an example and clarifies input and output

提供示例并阐明输入和输出

I: You are correct to some extent. But this should happen for the whole tree, not just the root alone.(Notice how early the requirements were solidified)

:你在某种程度上是正确的。 但这应该在整个树上发生,而不仅仅是根系上。 (请注意,要求在多久之前得到了巩固)

C: Oh got it! So I am thinking I need to do it recursively. Man, that's tough! Let me see. But before that, I'll just check my understanding by running through one more example.Provides one more eg to clarify any missing pieces

C :哦! 所以我想我需要递归地做。 伙计,那很难! 让我看看。 但在此之前,我将通过再举一个例子来检验我的理解。 提供另外一个,例如以澄清任何遗漏的部分

I: Yes you are right. That's the output. I think you got the problem completely. So how do you approach it?

:是的,你是对的。 这就是输出。 我认为您完全解决了问题。 那么您如何处理呢?

C: Let me see. So to swap left and right, I can just use a temp. But then how will I do it for remaining? Oh ya, I could just recurse for the others and do the same.

C :让我看看。 因此,要左右互换,我可以使用临时模板。 但是那我该如何做才能保留下来呢? 哦,我可以为其他人递归然后做同样的事情。

I: Cool. Is there any problem with that approach?

:酷。 这种方法有什么问题吗?

C: Hmmm. Yes, if I just swap the left and right recursively, how will I track the old and new tree?

C :嗯。 是的,如果我仅递归地交换左右,我将如何跟踪新旧树?

I: I am not sure I am following you. What is old and new?

:我不确定我是否在关注你。 什么是新旧?

C: What I meant is, there will be updated children, I need to swap them and not the old children.

C :我的意思是,将会有更新的孩子,我需要交换他们,而不是老孩子。

I: Yes, correct.

:是的,正确。

C: Ya I can just call this function recursively for left and right and store those values in a variable. I could then update the tree with those variables. This way I can make sure the whole tree is inverted.

C :是的,我可以为左和右递归调用此函数,并将这些值存储在变量中。 然后,我可以使用这些变量更新树。 这样,我可以确保整个树都被倒置。

I: Cool. Anything else you are missing?

:好酷。 您还有什么想念的吗?

C: No I think. So it will take O(n) time and O(1) space as I don't use any extra space.(Notice how proactively the candidate discusses time and space)

C :不,我想。 因此,这将占用O(n)时间和O(1)空间,因为我不使用任何额外的空间。 (请注意候选人如何积极地讨论时间和空间)

I: I am fine. You can start coding.

:很好。 您可以开始编码。

C: Sure. (Talks through the code while coding)

C :当然。 (在编码时会讲解代码)

def invert(node)invert(node.left)invert(node.right)node.left,node.right = node.right, node.leftreturn node
end

C: So I am done. Let me walk you through my code. So for a tree like ...(Explains and dry runs with an example)

C :我完成了。 让我一窥您的代码。 因此,对于像...这样的树(用示例说明和空转)

I: I guess you are right. Does it work for all cases?

:我想你是对的。 它适用于所有情况吗?

C: Hmmm. I guess I'll get Null pointer exception for an empty tree. Let me fix that by adding a null check.

C :嗯。 我猜我会为空树得到Null指针异常。 让我通过添加空检查来解决此问题。

I: Now it looks good. Anything else you are missing.

:现在看起来不错。 您还缺少什么。

C: No, I think other things I have covered like no leaves, one leaf, etc.(Notice how he calls out each case he considered)

C :不,我认为我所涵盖的其他内容,例如无叶,一片叶子等。 (请注意,他如何指出他考虑的每种情况)

I: Cool. I am good. Any questions? :)

:酷。 我很好。 任何问题? :)

反馈 (Feedback)

So what do you think about this interview?

那么您如何看待这次采访?

  • The candidate clarified the requirements before starting implementation.

    候选人在开始实施之前澄清了要求。
  • The candidate also froze the requirements by running through a few examples and clarifying his understanding.

    候选人还通过列举一些例子并阐明自己的理解来冻结要求。
  • The candidate came up with a working solution without any probing.

    候选人提出了一个可行的解决方案,没有进行任何调查。
  • The candidate proactively discussed the time and space complexities.

    候选人主动讨论了时间和空间的复杂性。
  • While coding, the candidate had a clear vision of what he was doing and where he was going.

    在编码时,应聘者对自己的工作和去向有清晰的认识。
  • The candidate had a bug in his code, and when asked to check for errors, he found the error and rectified it themselves.

    候选人的代码中有一个错误,当被要求检查错误时,他发现了错误并自行纠正。

结论 (Conclusion)

Interviewing is a completely different skill from coding. Even though you are good at problem-solving, the interview is a setting where the interviewer is trying to decide between hiring you or not. So in addition to coding, you also need to understand the interviewer's perspective so that you make it easy for him to hire you. In this article, I wanted to compare and contrast a good interview vs a mediocre one. Try to practice interview skills separately as the more you practice the better you get at it. You can reach out to me if you need help taking mock interviews.

面试是与编码完全不同的技能。 即使您擅长解决问题,面试还是一个环境,面试者会在此环境中决定是否雇用您。 因此,除了编码外,您还需要了解面试官的观点,以便您轻松地聘用面试官。 在本文中,我想比较和比较一个好的访谈与一个普通的访谈。 尝试分别练习面试技巧,因为练习越多,就会越好。 你可以伸手给我,如果你需要帮助,采取模拟面试。

This article was first published on http://kaizencoder.com. If you liked this article, please visit to read more like this or learn more about me!

本文最初在http://kaizencoder.com上发布。 如果您喜欢这篇文章,请访问以类似文章或了解有关我的更多信息!

翻译自: https://www.freecodecamp.org/news/behind-the-scenes-of-coding-interviews-good-vs-bad/

动画电影的幕后英雄怎么说好

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391357.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数据库之DML

1、表的有关操作: 1.1、表的创建格式: CREATE TABLE IF NOT EXISTS 表名(属性1 类型,属性2 类型,....,属性n 类型);# 标记部分表示可以省略 1.2、表的修改格式:ALTER table 表名 ADD…

网络对抗技术作业一 201421410031

姓名:李冠华 学号:201421410031 指导教师:高见 1、虚拟机安装与调试 安装windows和linux(kali)两个虚拟机,均采用NAT网络模式,查看主机与两个虚拟机器的IP地址,并确保其连通性。同时…

生存分析简介:Kaplan-Meier估计器

In my previous article, I described the potential use-cases of survival analysis and introduced all the building blocks required to understand the techniques used for analyzing the time-to-event data.在我的上一篇文章中 ,我描述了生存分析的潜在用例…

强密码检测

#!/usr/bin/env python # -*- coding: utf-8 -*- #1. 密码长度应该大于或等于8位 #2. 密码必须包含数字、字母及特殊字符三种组合 nums 0123456789 chars1 abcdefghijklmnopqrstuvwxyz chars2 ABCDEFGHIJKLMNOPQRSTUVWXYZ symbols r!#$%^&*()_-/*{}[]\|";:/?…

OD Linux发行版本

题目描述: Linux操作系统有多个发行版,distrowatch.com提供了各个发行版的资料。这些发行版互相存在关联,例如Ubuntu基于Debian开发,而Mint又基于Ubuntu开发,那么我们认为Mint同Debian也存在关联。 发行版集是一个或多…

Go语言实战 : API服务器 (3) 服务器雏形

简单API服务器功能 实现外部请求对API 服务器健康检查和状态查询,返回响应结果 1.API服务器的状态监测 以内存状态检测为例,获取当前服务器的健康状况、服务器硬盘、CPU 和内存使用量 func RAMCheck(c *gin.Context) {u, _ : mem.VirtualMemory()//获…

TCP/IP协议-1

转载资源,链接地址https://www.cnblogs.com/evablogs/p/6709707.html 转载于:https://www.cnblogs.com/Chris-01/p/11474915.html

http://nancyfx.org + ASPNETCORE

商务产品servicestack: https://servicestack.net/ http://nancyfx.org ASPNETCORE http://nancyfx.org Drapper ORM精简框架 https://github.com/StackExchange/Dapper Nancy 是一个轻量级用于构建基于 HTTP 的 Web 服务,基于 .NET 和 Mono 平…

使用r语言做garch模型_使用GARCH估计货币波动率

使用r语言做garch模型Asset prices have a high degree of stochastic trends inherent in the time series. In other words, price fluctuations are subject to a large degree of randomness, and therefore it is very difficult to forecast asset prices using traditio…

ARC下的内存泄漏

##ARC下的内存泄漏 ARC全称叫 ARC(Automatic Reference Counting)。在编译期间,编译器会判断对象的使用情况,并适当的加上retain和release,使得对象的内存被合理的管理。所以,从本质上说ARC和MRC在本质上是一样的,都是…

python:校验邮箱格式

# coding:utf-8import redef validateEmail(email):if re.match("^.\\(\\[?)[a-zA-Z0-9\\-\\.]\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$", email) ! None:# if re.match("/^\w[a-z0-9]\.[a-z]{2,4}$/", email) ! None:print okreturn okelse:print failret…

cad2019字体_这些是2019年最有效的简历字体

cad2019字体When it comes to crafting the perfect resume to land your dream job, you probably think of just about everything but the font. But font is a key part of your first impression to recruiters and employers.当制作一份完美的简历来实现理想的工作时&…

Go语言实战 : API服务器 (4) 配置文件读取及连接数据库

读取配置文件 1. 主函数中增加配置初始化入口 先导入viper包 import (..."github.com/spf13/pflag""github.com/spf13/viper""log")在 main 函数中增加了 config.Init(*cfg) 调用,用来初始化配置,cfg 变量值从命令行 f…

方差偏差权衡_偏差偏差权衡:快速介绍

方差偏差权衡The bias-variance tradeoff is one of the most important but overlooked and misunderstood topics in ML. So, here we want to cover the topic in a simple and short way as possible.偏差-方差折衷是机器学习中最重要但被忽视和误解的主题之一。 因此&…

win10 uwp 让焦点在点击在页面空白处时回到textbox中

原文:win10 uwp 让焦点在点击在页面空白处时回到textbox中在网上 有一个大神问我这样的问题:在做UWP的项目,怎么能让焦点在点击在页面空白处时回到textbox中? 虽然我的小伙伴认为他这是一个 xy 问题,但是我还是回答他这个问题。 首…

python:当文件中出现特定字符串时执行robot用例

#coding:utf-8 import os import datetime import timedef execute_rpt_db_full_effe_cainiao_city():flag Truewhile flag:# 判断该文件是否存在# os.path.isfile("/home/ytospid/opt/docker/jsc_spider/jsc_spider/log/call_proc.log")# 存在则获取昨天日期字符串…

MySQL分库分表方案

1. MySQL分库分表方案 1.1. 问题:1.2. 回答: 1.2.1. 最好的切分MySQL的方式就是:除非万不得已,否则不要去干它。1.2.2. 你的SQL语句不再是声明式的(declarative)1.2.3. 你招致了大量的网络延时1.2.4. 你失去…

linux创建sudo用户_Linux终极指南-创建Sudo用户

linux创建sudo用户sudo stands for either "superuser do" or "switch user do", and sudo users can execute commands with root/administrative permissions, even malicious ones. Be careful who you grant sudo permissions to – you are quite lit…

重学TCP协议(1) TCP/IP 网络分层以及TCP协议概述

1. TCP/IP 网络分层 TCP/IP协议模型(Transmission Control Protocol/Internet Protocol),包含了一系列构成互联网基础的网络协议,是Internet的核心协议,通过20多年的发展已日渐成熟,并被广泛应用于局域网和…

分节符缩写p_p值的缩写是什么?

分节符缩写pp是概率吗? (Is p for probability?) Technically, p-value stands for probability value, but since all of statistics is all about dealing with probabilistic decision-making, that’s probably the least useful name we could give it.从技术…