风险管理涵盖众多领域,包括风险管理概论、数量分析、金融市场与金融产、定价与风险模型、市场风险测度与管理、信用风险测度与管理、操作风险测度与管理、基金投资风险、会计、法律等众多内容。在今日错综复杂、瞬...
分类:
其他好文 时间:
2015-09-14 07:13:19
阅读次数:
357
一大清早小小编就看到这样一条动弹,顿时不能同意更多~ @Mallon:That‘s deep… 以后这就是小小编的人生信条了!要贯彻到底! 不过对于那些长期失眠的人来说就是另外一回事了 @ 孔小菜:如果做了亏心事真的会睡不...
分类:
其他好文 时间:
2015-09-14 07:13:04
阅读次数:
268
QuestionCount the number of prime numbers less than a non-negative number,n.Solution 1Naive way, to check each number one by one. If a number i is pri...
分类:
其他好文 时间:
2015-09-14 07:10:35
阅读次数:
207
BowerBower:客户端库管理工具Day 1: Bower —— 管理你的客户端依赖关系bower解决js的依赖管理
分类:
其他好文 时间:
2015-09-14 07:10:53
阅读次数:
148
QuestionGiven two stringssandt, determine if they are isomorphic.Two strings are isomorphic if the characters inscan be replaced to gett.All occurrenc...
分类:
其他好文 时间:
2015-09-14 07:10:04
阅读次数:
127
Sept. 10, 2015 Study again the back tracking algorithm using recursive solution, rat in maze, a classical problem. Made a few of mistakes through the ...
分类:
其他好文 时间:
2015-09-14 07:07:16
阅读次数:
198
Sept. 5, 2015花时间把代码读明白,比光看书强.动手写代码,改代码,兴趣是最好的老师. 多记几个例子, 增加情趣.举个例子关于中序遍历, 4 / \ 2 6 / \ / \ 1 3 5 7easy way to travel is to remem...
分类:
其他好文 时间:
2015-09-14 07:03:30
阅读次数:
169
Sept. 13, 2015Spent more than a few hours to work on the leetcode problem, and my favorite blogs about this problems:1.http://siddontang.gitbooks.io/l...
分类:
其他好文 时间:
2015-09-14 07:02:38
阅读次数:
138
Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identical an...
分类:
其他好文 时间:
2015-09-14 07:02:20
阅读次数:
98
QuestionGiven a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were insert...
分类:
其他好文 时间:
2015-09-14 07:02:48
阅读次数:
125
添加app.set('views', __dirname + '/views')修改app.use(express.static(__dirname + '/public'));express-handlebars.js源代码修改layoutsDir : '../usr/local/lib/vi.....
分类:
其他好文 时间:
2015-09-14 07:03:55
阅读次数:
132
Invert a binary tree. 4 / \ 2 7 / \ / \1 3 6 9to 4 / \ 7 2 / \ / \9 6 3 1解题思路:方法一: recursion 交换当前左右节点,并直接调用递归即可方...
分类:
其他好文 时间:
2015-09-14 07:01:34
阅读次数:
122
Problem:Given a binary tree, count the number of uni-value subtrees.A Uni-value subtree means all nodes of the subtree have the same value.For example...
分类:
其他好文 时间:
2015-09-14 07:01:23
阅读次数:
129
【题目】LeetCode(6): ZigZag ConversionURL: https://leetcode.com/problems/zigzag-conversion/【描述】The string"PAYPALISHIRING"is written in a zigzag pattern on...
分类:
其他好文 时间:
2015-09-14 07:02:48
阅读次数:
192