由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - js Q: array[2,0,1,1] => 1102
相关主题
问个基本 C array 问题请教改numpy array的dtype
这两种写法面試时候你喜欢哪种?问个Hadoop Word Count的简单问题
关于mapreduce一问reverse words, not the Microsoft one!!!
问一个 char * 和 char [] 的问题Why Google Chrome is so fast?
Java 的算法题:怎样把missing value替换成0 放在新生成的2D array里面?Reversing a singly linked list
How to write "ip address => integer" in perl, python, Javascript etc. ?reverse LL recursively
a simple question请各位大牛指点,感激不尽 : Python Script 关于登录 mitbbs 的问题
A question about sharing data inside a C++ classLiterate programming
相关话题的讨论汇总
话题: reduce话题: 1102话题: array话题: js话题: reverse
进入Programming版参与讨论
1 (共1页)
w*s
发帖数: 7227
1
basically [12, 34, 56, 78] => 78563412
i was trying to use reduce(), but seems don't know how to do it.
Any suggestions ?
w*s
发帖数: 7227
2
guess i can reverse the array 1st, but that's 2 steps.

【在 w*s 的大作中提到】
: basically [12, 34, 56, 78] => 78563412
: i was trying to use reduce(), but seems don't know how to do it.
: Any suggestions ?

Y**G
发帖数: 1089
3
array.reverse().map((item) => item.toString()).contact()

【在 w*s 的大作中提到】
: guess i can reverse the array 1st, but that's 2 steps.
e*******o
发帖数: 4654
4
[2,0,1,1].reduce((x,y) => ''+ y + x)
Y**G
发帖数: 1089
5
parseInt([2,0,1,1].reverse().map((item) => item.toString()).join(''), 10)
output:
1102

【在 Y**G 的大作中提到】
: array.reverse().map((item) => item.toString()).contact()
w*s
发帖数: 7227
6
嚓,你这个写法最牛

【在 e*******o 的大作中提到】
: [2,0,1,1].reduce((x,y) => ''+ y + x)
w*s
发帖数: 7227
7
basically [12, 34, 56, 78] => 78563412
i was trying to use reduce(), but seems don't know how to do it.
Any suggestions ?
w*s
发帖数: 7227
8
guess i can reverse the array 1st, but that's 2 steps.

【在 w*s 的大作中提到】
: basically [12, 34, 56, 78] => 78563412
: i was trying to use reduce(), but seems don't know how to do it.
: Any suggestions ?

Y**G
发帖数: 1089
9
array.reverse().map((item) => item.toString()).contact()

【在 w*s 的大作中提到】
: guess i can reverse the array 1st, but that's 2 steps.
e*******o
发帖数: 4654
10
[2,0,1,1].reduce((x,y) => ''+ y + x)
相关主题
How to write "ip address => integer" in perl, python, Javascript etc. ?请教改numpy array的dtype
a simple question问个Hadoop Word Count的简单问题
A question about sharing data inside a C++ classreverse words, not the Microsoft one!!!
进入Programming版参与讨论
Y**G
发帖数: 1089
11
parseInt([2,0,1,1].reverse().map((item) => item.toString()).join(''), 10)
output:
1102

【在 Y**G 的大作中提到】
: array.reverse().map((item) => item.toString()).contact()
w*s
发帖数: 7227
12
嚓,你这个写法最牛

【在 e*******o 的大作中提到】
: [2,0,1,1].reduce((x,y) => ''+ y + x)
e*******o
发帖数: 4654
13
[2,0,1,1].reduceRight( (a,b) => a.toString().concat(b))
js 现在鸟枪换炮,标准库啥都有了。
c******n
发帖数: 16666
14
大牛觉得啥时候我们可以抛弃loadash这种辅助库

【在 e*******o 的大作中提到】
: [2,0,1,1].reduceRight( (a,b) => a.toString().concat(b))
: js 现在鸟枪换炮,标准库啥都有了。

c*********e
发帖数: 16335
15
arrow function不是每个browser都支持的:
Chrome Firefox (Gecko) Edge IE Opera Safari
45.0 22.0 (22.0) (Yes) No support 32 10.0

嚓,你这个写法最牛

【在 w*s 的大作中提到】
: 嚓,你这个写法最牛
a9
发帖数: 21638
16
babel啊

【在 c*********e 的大作中提到】
: arrow function不是每个browser都支持的:
: Chrome Firefox (Gecko) Edge IE Opera Safari
: 45.0 22.0 (22.0) (Yes) No support 32 10.0
:
: 嚓,你这个写法最牛

W***o
发帖数: 6519
17
[12, 34, 56, 78].reverse().join('')

【在 w*s 的大作中提到】
: basically [12, 34, 56, 78] => 78563412
: i was trying to use reduce(), but seems don't know how to do it.
: Any suggestions ?

N*****m
发帖数: 42603
18
lodash

【在 c******n 的大作中提到】
: 大牛觉得啥时候我们可以抛弃loadash这种辅助库
e*******o
发帖数: 4654
19
大牛不敢当,看了一下啊 lodash, 感觉抛不掉。

【在 c******n 的大作中提到】
: 大牛觉得啥时候我们可以抛弃loadash这种辅助库
1 (共1页)
进入Programming版参与讨论
相关主题
Literate programmingJava 的算法题:怎样把missing value替换成0 放在新生成的2D array里面?
考考你的能力。How to write "ip address => integer" in perl, python, Javascript etc. ?
Reverse Words in a Stringa simple question
有什么java库可以看log信息?A question about sharing data inside a C++ class
问个基本 C array 问题请教改numpy array的dtype
这两种写法面試时候你喜欢哪种?问个Hadoop Word Count的简单问题
关于mapreduce一问reverse words, not the Microsoft one!!!
问一个 char * 和 char [] 的问题Why Google Chrome is so fast?
相关话题的讨论汇总
话题: reduce话题: 1102话题: array话题: js话题: reverse