forked from Advanced-Frontend/Daily-Interview-Question
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md
201 lines (122 loc) · 4.07 KB
/
README.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# Daily-Interview-Question
加入前端「壹题」学习小组,尽在公众号「高级前端进阶」,进阶共勉之!
工作日每天一道大厂前端面试题,一年后再回头,会感谢曾经努力的自己!
[线上版本阅读更流畅,点击阅读](https://muyiy.vip/question/)
<br/>
## 今日面试题
2019-07-30
> 第 116 题:输出以下代码运行结果
>
> ```js
> 1 + "1"
>
> 2 * "2"
>
> [1, 2] + [2, 1]
>
> "a" + + "b"
> ```
解析:[第 116 题](https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/229)
<br/>
## 本周汇总
2019-07-29
> 第 115 题:写一个单向链数据结构的 js 实现并标注复杂度(水滴筹)
解析:[第 115 题](https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/226)
<br/>
2019-07-26
> 第 114 题:编程题,找出字符串中连续出现最多的字符和个数(蘑菇街)
>
> ```js
> 'abcaakjbb' => {'a':2,'b':2}
> 'abbkejsbcccwqaa' => {'c':3}
> ```
解析:[第 114 题](https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/220)
<br/>
2019-07-25
> 第 113 题:编程题,根据以下要求,写一个数组去重函数(蘑菇街)
>
> 1. 如传入的数组元素为`[123, "meili", "123", "mogu", 123]`,则输出:`[123, "meili", "123", "mogu"]`
>
> 2. 如传入的数组元素为`[123, [1, 2, 3], [1, "2", 3], [1, 2, 3], "meili"]`,则输出:`[123, [1, 2, 3], [1, "2", 3], "meili"]`
>
> 3. 如传入的数组元素为`[123, {a: 1}, {a: {b: 1}}, {a: "1"}, {a: {b: 1}}, "meili"]`,则输出:`[123, {a: 1}, {a: {b: 1}}, {a: "1"}, "meili"]`
解析:[第 113 题](https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/215)
<br/>
2019-07-24
> 第 112 题:编程题,写个程序把 entry 转换成如下对象(跟昨日题目相反)
>
> ```js
> var entry = {
> 'a.b.c.dd': 'abcdd',
> 'a.d.xx': 'adxx',
> 'a.e': 'ae'
> }
>
> // 要求转换成如下对象
> var output = {
> a: {
> b: {
> c: {
> dd: 'abcdd'
> }
> },
> d: {
> xx: 'adxx'
> },
> e: 'ae'
> }
> }
> ```
解析:[第 112 题](https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/212)
<br/>
2019-07-23
> 第 111 题:编程题,写个程序把 entry 转换成如下对象
>
> ```js
> var entry = {
> a: {
> b: {
> c: {
> dd: 'abcdd'
> }
> },
> d: {
> xx: 'adxx'
> },
> e: 'ae'
> }
> }
>
> // 要求转换成如下对象
> var output = {
> 'a.b.c.dd': 'abcdd',
> 'a.d.xx': 'adxx',
> 'a.e': 'ae'
> }
> ```
解析:[第 111 题](https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/206)
<br/>
2019-07-22
> 第 110 题:编程题,请写一个函数,完成以下功能
>
> 输入
> ``'1, 2, 3, 5, 7, 8, 10'``
> 输出
> ``'1~3, 5, 7~8, 10'``
解析:[第 110 题](https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/201)
<br/>
## 所有面试题汇总
- [壹题所有题目及答案汇总](https://github.com/Advanced-Frontend/Daily-Interview-Question/blob/master/datum/summary.md)
<br/>
## 半月刊
- [前端 100 问:能搞懂 80% 的请把简历给我](https://github.com/yygmind/blog/issues/43)
- [【半月刊 1】前端高频面试题及答案汇总](https://juejin.im/post/5c6977e46fb9a049fd1063dc)
- [【半月刊 2】前端高频面试题及答案汇总](https://juejin.im/post/5c7bd72ef265da2de80f7f17)
- [【半月刊 3】前端高频面试题及答案汇总](https://juejin.im/post/5c9ac3f66fb9a070e056718f)
- [【半月刊 4】前端高频面试题及答案汇总](https://juejin.im/post/5cb3376bf265da039c0543da)
<br/>
## 联系我
进阶系列文章汇总如下,觉得不错点个 star,欢迎 **加群** 互相学习。
> [https://github.com/yygmind/blog](https://github.com/yygmind/blog)
我是木易杨,公众号「高级前端进阶」作者,跟着我**每周重点攻克一个前端面试重难点**。接下来让我带你走进高级前端的世界,在进阶的路上,共勉!
![image](https://github.com/yygmind/blog/raw/master/images/weixin_re.png)