The list-manipulation tag has no wiki summary.
6
votes
3answers
319 views
Mapping over sublists in Scala
I know that the map function takes each element of a list (a sequence) and applies a function to it. Recursively (and without respect to termination conditions, etc)
map(s, f) = f(s.head) :: ...
5
votes
4answers
148 views
Is there a python builtin that does this:
Is there a python builtin that does the same as tupler for a set of lists, or something similar:
def tupler(arg1, *args):
length = min([len(arg1)]+[len(x) for x in args])
out = []
for i ...
5
votes
3answers
427 views
Lazy “n choose k” in OCaml
As part of a bigger problem of enumerating a set, I need to write an OCaml function 'choose' which takes a list and outputs as the list of all possible sequences of size k made up of elements of that ...
4
votes
2answers
107 views
sorting with changes to the other part in mathematica
I am just wondering:
given a list {{{3,1,2},{4,2,5}},{{7,1},{2,4}}}, I want to sort the first component, then have the second component change as the first one does. The desired result is ...
4
votes
2answers
176 views
two list operations in mathematica
I have two list operations which I would like to ask for help. The way I implemented them is not very elegant, so I want to learn from you experts.
1) Suppose I have two lists, one is like ...
4
votes
5answers
1k views
Some built-in to pad a list in python
I have a list of size < N and I want to pad it up to the size N with a value.
Certainly, I can use something like the following, but I feel that there should be something I missed:
>>> N ...
3
votes
5answers
372 views
How can I get the concatenation of two lists in Python without modifying either one?
In Python, the only way I can find to concatenate two lists is list.extend, which modifies the first list. Is there any concatenation function that returns its result without modifying its arguments?
3
votes
3answers
1k views
c# List manipulation
If I have
List<String> text
how can I create a sub-list of all continious elements within a specific range e.g.
List<String> subList = /* all elements within text bar the first 2*/
...
2
votes
2answers
279 views
Lisp Exercises Involving List Manipulation
I trying to complete this exercise;
Write a Lisp function that takes as input a list of elements, such as (A B C)
, and returns a list in which the position of each element follows it, such as ...
2
votes
5answers
187 views
In python, how do I take the highest occurrence of something in a list, and sort it that way?
[3, 3, 3, 4, 4, 2]
Would be:
[ (3, 3), (4, 2), (2, 1) ]
The output should be sorted by highest count first to lowest count. In this case, 3 to 2 to 1.
1
vote
2answers
121 views
How do I break a Scheme list into args to be passed to a procedure?
I want to use the predefined (max) function (R5RS) with a list of numbers, which varies in length. Unfortunately, (max) accepts input like this:
(max 2 43 5 6)
=> 43
I'm attempting to use it ...
1
vote
1answer
134 views
Does Linq/.NET3.5 support a 'zip' method?
In other languages (ruby, python, ...) I can use zip(list1, list2) which works like this:
If list1 is {1,2,3,4} and list2 is {a,b,c}
then zip(list1, list2) would return: {(1,a), (2,b), (3,c), ...
1
vote
3answers
289 views
How to get the difference between two list based on substrings withing each string in the seperate lists
I have two long list, one from a log file that contains lines formatted like
201001050843 blah blah blah <email@site.com> blah blah
and a second file in csv format. I need to generate a list ...
0
votes
3answers
114 views
need help with programming a word finder in python
hi i have a question about python which im a rookie at:
i have a text file which contains a list of words (around 23000) in alphabetical order, like a small dictionary
each line is a word in that ...
0
votes
2answers
79 views
Matching specific items in several discrete collections
I have a problem whereby I have several discrete lists of ID's eg.
List (A) 1,2,3,4,5,7,8
List (B) 2,3,4,5
List (C) 4,2,8,9,1
etc...
I then have another collection of ID's...
For example: 1,2,4
I ...