Skip to main content

标  题: Careercup 150总结

发信人: peking2 (myfacebook), 信区: JobHunting
标  题: Careercup 150总结
发信站: BBS 未名空间站 (Wed Apr  4 03:16:43 2012, 美东)

今天没心情写code,总结一下这些题吧。

很多人都说把这150题做了一遍或几遍,但是我感觉算法题才是重点,其他的很多题面
试基本碰不上,没看出来有必要全做。这里总结一下自己认为重要的题。

第一章 (8):
全部重要。1.5 面A碰到, 1.7面Z碰到, 1.8面Bigfish碰到

第二章 (7):
全部重要。2.2面Bigfish碰到

第三章 (2):
感觉就是3.2, 3.5重要。貌似面M被一小印问到

第四章(4):
感觉4.2, 4.3, 4.5,4.6重要。4.5面E碰到

第九章 (11):
感觉都重要。F和G很愿意出DP题。这些题没碰到过,但是类似的题碰到过。

第十章(5):
10.1 M碰到过两次
10.3
10.4 E碰到
10.6
10.7

第十七章(3):
17.8 经典
17.9 S碰到
17.2 G碰到

第十八章(9):
18.2 貌似经典
18.5
18.6 面Z碰到类似题
18.7
18.9-18.13

一共50道题。其他很多题可以做练习,但是面试碰到的概率不大。上边一些题面试也很
难碰到但是是不可不练的题,比如八皇后。另外就是别完全follow书上的答案,注意看
有没有bug。希望大家能补充一下自己认为重要的。

Comments

Popular posts from this blog

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...