问题标签 [list]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
51519 浏览

.net - .NET 列表Concat 与 AddRange

泛型 List 上的AddRangeConcat函数有什么区别?一个比另一个推荐吗?

0 投票
4 回答
2128 浏览

.net - .Net 中有类似 zip 的方法吗?

在 Python 中有一个非常简洁的函数被调用zip,它可以用来同时遍历两个列表:

上面的代码应该产生以下内容:

我想知道.Net中是否有类似的方法?我正在考虑自己编写它,但如果它已经可用,那就没有意义了。

0 投票
3 回答
17576 浏览

sharepoint - Sharepoint 计算字段的公式创建者

我有一个共享点列表

例如 2 个用户(用户 A 和用户 B)

我需要列表项中的计算字段,这样如果用户“A”创建项目,则字段值将为“X”,如果用户“B”创建项目字段值将是“Y”

但我不能在计算字段的 furmiula 中使用 [created by] !这是为什么 ?!!还有另一种方法可以做我需要做的事情吗?

0 投票
13 回答
11237 浏览

java - Sorting matched arrays in Java

Let's say that I have two arrays (in Java),

int[] numbers; and int[] colors;

Each ith element of numbers corresponds to its ith element in colors. Ex, numbers = {4,2,1} colors = {0x11, 0x24, 0x01}; Means that number 4 is color 0x11, number 2 is 0x24, etc.

I want to sort the numbers array, but then still have it so each element matches up with its pair in colors.

Ex. numbers = {1,2,4}; colors = {0x01,0x24,0x11};

What's the cleanest, simplest way to do this? The arrays have a few thousand items, so being in place would be best, but not required. Would it make sense to do an Arrays.sort() and a custom comparator? Using library functions as much as possible is preferable.

Note: I know the "best" solution is to make a class for the two elements and use a custom comparator. This question is meant to ask people for the quickest way to code this. Imagine being at a programming competition, you wouldn't want to be making all these extra classes, anonymous classes for the comparator, etc. Better yet, forget Java; how would you code it in C?

0 投票
16 回答
6852 浏览

python - 列出字典中所有以

如何制作一个用户输入字符串的程序,然后程序会生成一个以该字符串开头的单词列表?

例如:
用户:“abd”
程序:abdicate,腹部,绑架......

谢谢!


编辑:我正在使用 python,但我认为这是一个相当独立于语言的问题。

0 投票
3 回答
1110 浏览

python - 如何将列表加入字符串(警告)?

按照我上一个问题的思路,我如何将字符串列表加入到字符串中,以使值被干净地引用。就像是:

进入:

我怀疑 csv 模块会在这里发挥作用,但我不确定如何获得我想要的输出。

0 投票
6 回答
324579 浏览

python - 在 Python 中使用索引迭代列表

我可以发誓我已经看到了接受一个列表的函数(或方法),就像这样[3, 7, 19]并将它变成可迭代的元组列表,就像这样:[(0,3), (1,7), (2,19)]使用它而不是:

但我不记得名字和谷歌搜索“迭代列表”一无所获。

0 投票
5 回答
3128 浏览

algorithm - 如何确定两个数据列表的差异

这是一个让 CS 家伙用理论大放异彩的练习。

想象一下,您有 2 个带有元素的容器。文件夹、URL、文件、字符串,真的没关系。

什么是计算添加和删除的算法?

注意:如果有很多方法可以解决这个问题,请每个答案发布一个,以便分析和投票。

编辑:所有答案都用 4 个容器解决了这个问题。是否可以只使用最初的 2?

0 投票
3 回答
34322 浏览

list - 如何将公告列表/webpart 添加到发布门户

我有一个发布门户网站,我需要在某些页面上添加一些公告。我读过一篇文章说我必须创建一个公告列表才能添加公告 Web 部件,但我似乎找不到任何有关如何添加公告列表的资源。

任何帮助将不胜感激。

蒂亚!

0 投票
3 回答
3039 浏览

python - 我是否必须在 Python 中导致 ValueError

我有这个代码:

我希望能够做到这一点,因为我不喜欢故意导致异常:

有没有办法我可以做到这一点?