Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
232 views

Make Python Sublists from a list using a Seperator

I have for example the following list: ['|', u'MOM', u'DAD', '|', u'GRAND', '|', u'MOM', u'MAX', u'JULES', '|'] and want it to be split by the "|" so the result would look like: [[u'MOM', ...
4
votes
3answers
3k views

.NET equivalent of Java's List.subList()?

Is there a .NET equivalent of Java's List.subList() that works on IList<T>?
3
votes
2answers
660 views

Find (and keep) duplicates of sublist in python

I have a list of lists (sublist) that contains numbers and I only want to keep those exists in all (sub)lists. Example: x = [ [1, 2, 3, 4], [3, 4, 6, 7], [2, 3, 4, 6, 7]] output => [3, 4] How ...
2
votes
2answers
79 views

Finding sub-lists within a list

I'm a real scheme newbie and i'm trying to work out how to return all the sub-lists given with a list argument (i.e. (1 2 (3 4 5) (6 7 8) 9) should return the two lists (3 4 5) and (6 7 8)). I know I ...
2
votes
1answer
97 views

Ordered List and Sublist issue HTML

So here is my code: <div class="faq"> <br /> <ol> <li>Frequently asked questions about Sweden</li> <li><a href="#faq1">What and where is ...
2
votes
1answer
132 views

Haskell: test if list contains specific “sublist”

Is there a trick or a prelude function to test if a list contains a specific substring/sublist? xyz :: [a] -> [a] -> Bool xyz "hello world" "worl" -> True xyz [1,2,3,4,5,6,7,8,1,2,3,4,5] ...
2
votes
3answers
91 views

Applying arithmetic functions to elements of sublists where the first element of each sublist is the same

Here is my problem. I have a list of lists, as follows: linesort=[ ['Me', 1, 596], ['Mine', 1, 551], ['Myself', 1, 533], ['Myself', 1, 624], ['Myself', 1, 656], ['Myself', 1, 928], ...
2
votes
5answers
3k views

Python list / sublist selection -1 weirdness

So I've been playing around with python and noticed something that seems a bit odd. The semantics of -1 in selecting from a list don't seem to be consistent. So I have a list of numbers ls = ...
1
vote
6answers
36 views

java sublist removal

I'm trying to create a list of objects and then a sublist and then delete all the elements in the sublist and then once again display the main list. However when I try to remove elements from a ...
1
vote
2answers
56 views

Find (start:end) positions that sublists occur within a list . Python

If one had a long list of numbers: example=['130','90','150','123','133','120','160','45','67','55','34'] and sub lists within the list like ...
1
vote
1answer
60 views

Efficient Matching of Sublists In Python

Given a two-dimensional list, I would like to find everything that contains a sublist. I realize I can do something like: #Psuedo-Python (not kosher) def MatchAll(theList,toMatch): ...
1
vote
3answers
86 views

Splitting a K-length list into L sub-lists that are as “even” as possible, even if K/L leaves a remainder

I don't know of a better way to word what I'm looking for, so please bear with me. Let's say that I have a list of 17 elements. For the sake of brevity we'll represent this list as ABCDEFGHIJKLMNOPQ. ...
1
vote
5answers
582 views

How to take a valid sublist in Java?

I have this weird (I think) problem in Java. I have an ArrayList and I want to take a sublist. But I get the follow exception. package javatest; import java.util.ArrayList; public class JavaTest { ...
1
vote
2answers
140 views

Shortest sublist including the element N with a total > MIN

Example: Given a list of random numbers [1,5,1,1,3,10,5,4,2,1], the test element N=10 at index 5 and a MIN=20. The shortest sublist including 10 with a total>20 is obviously the list [3,10,5,4] ...
1
vote
3answers
791 views

python list and sublist

I have to check if list1 is contained in list2. It also should check if it appears in that order in the list as well. If it's true, it should return true and false if it doesn't. def check(lst1, ...
1
vote
1answer
206 views

Split An Erlang List, X, into a List of All X's Sublists

lists:sublist/2 and lists:sublist/3 make it simple to extract a single sublist from a list, but is there a BiF or module that returns a list of all of a list's sublists? i.e. ...
1
vote
5answers
399 views

How to get a sublist without using the sublist method in java

This is what I have right now: public ArrayList subList(int fromIndex, int toIndex){ ArrayList a = new ArrayList(); for (int i=fromIndex;i<toIndex;i++) { a.add(stuff[i]); ...
1
vote
0answers
141 views

unexpected sublist result returned by Hibernate query

I hava a HQL query as the following which returns a java.util.RandomAccessSubList of ORDER. The offset of the SubList is 1,so the first element of the query result list can't be accessed. SELECT ...
0
votes
2answers
61 views

Is there a way to keep a sublist synchronized to the contents of a master list?

I will have one 'master list' (preferably of type BindingList). In another class I have a sublist, which is composed of certain elements of the 'master list'. Each instance of the class has different ...
0
votes
2answers
57 views

Getting sublist in Java

In Java, i want to get subList from a list. i cannot use subList of java as i want sub list based on some valus in list. I have List of DTO objects. DTO is like MyClass myClass; int hit; And ...
0
votes
2answers
87 views

Filter sublists result in SQL query

I have a menu system where MenuTabs - the top level, they contain Menu and Menu contains MenuItem s. Each level item has a list of user Role s it should be visible for. I need to create a database ...
0
votes
2answers
53 views

Python: sub list of items depending on a certain value of the items, e.g. boolean

I have a list of similar objects, some of them have a certain value set, here more specifically a boolean flag: myList = [WhatEver(..., True, ...), WhatEver(..., True, ...), WhatEver(..., False, ...
0
votes
1answer
253 views

Scheme: Making a list of sublist maxes

Given a list, each item of which is an (r g b) color, return a list consisting of the maximum component in each color. Example: given ((123 200 6) (10 30 20) (212 255 10) (0 0 39) (37 34 34)), code ...