摘要: 申请+笔试 这次高盛的申请其实算是偶然的机会,因为上一届有个很厉害的学长去了GS,发布了一下邮件。我也只是想体验一下申请的流程吧,顺便把之前一直念叨的简历给写了。申请的过程还好,去网站填各种资料,然后几天内需要完成一个笔试。笔试可以选两种,数学or编程,我数学现在没什么信心,所以就没勾上。结果编程题 阅读全文
posted @ 2017-12-17 16:32 Aneureka 阅读(1420) 评论(0) 推荐(0) 编辑
摘要: 前天被网易鸽了还是有点伤(大概是因为说的实习时间太短了吧),也不知道为什么,突然也不感觉多怕了。但难免表现还是不太好。 一面(能到哪写到哪) 视频面试。说实话自己之前只接过SAP的电面和群面(有时间会写一个小记录),虽然最终拿到offer(最后没去),但视频面试确实要比电话面试紧张。没接触过这种形式 阅读全文
posted @ 2017-11-24 19:04 Aneureka 阅读(397) 评论(0) 推荐(0) 编辑
摘要: Problem Given an array of n integers where n 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums e 阅读全文
posted @ 2017-10-18 11:57 Aneureka 阅读(103) 评论(0) 推荐(0) 编辑
摘要: Problem According to the Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematici 阅读全文
posted @ 2017-10-12 21:07 Aneureka 阅读(146) 评论(0) 推荐(0) 编辑
摘要: Problem Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole array 阅读全文
posted @ 2017-10-11 17:03 Aneureka 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Problem Given a char array representing tasks CPU need to do. It contains capital letters A to Z where different letters represent different tasks.Tas 阅读全文
posted @ 2017-10-10 17:58 Aneureka 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Python Core Programing Notes 1. 缩进4个空格长度,避免使用制表符 2. python的赋值语句不会返回值,如y = (x = x+1)是错误的 3. 交换两个值:x, y = y, x 4. python不支持重载标识符 5. _xxx:类中的私有变量/方法名 __x 阅读全文
posted @ 2017-09-13 23:02 Aneureka 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Effective Java Notes 1. 用静态工厂方法代替构造器 常用的方法名称:valueOf, getInstance, getType... 优势 有方法名称,增强可读性 不必每次在调用的时候都常见一个新对象 2. 在遇到多个构造器参数时考虑使用构建器(Builder:例如String 阅读全文
posted @ 2017-09-07 19:32 Aneureka 阅读(144) 评论(0) 推荐(0) 编辑
摘要: Problem Given n non negative integers a1 , a2 , ..., an , where each represents a point at coordinate ( i , ai ). n vertical lines are drawn such that 阅读全文
posted @ 2017-08-24 11:23 Aneureka 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 红黑树 说明 对自己所理解的红黑树的小小总结,仅此而已。 预备知识 二叉搜索树(BST) 2 3查找树(或2 3 4树) 定义 红黑树是含有红黑链接并满足下列条件的二叉查找树: 红链接均为左链接; 没有任何一个结点同时和两条红链接相连; 该树是完美黑色平衡的,即任意空链接到根结点的路径上的黑链接数量 阅读全文
posted @ 2017-08-23 00:35 Aneureka 阅读(209) 评论(0) 推荐(0) 编辑