The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
86 views

Why doesn't System.Include work when the Set is provided by a property?

Why doesn't System.Include work when the Set is provided by a property? TMyItem = (miOne, miTwo, miThree); TMyItems = set of TMyItem; TSomeClass = class private FItems: TMyItems; ...
0
votes
3answers
44 views

Searching a Hashmap, containing sets, containing objects, for those objects

I have a class of objects. Ideally, I'd like to place them all into five separate sets. Then, I'd like to add all five of these sets to a HashMap and give them each a unique identifier. Finally, I'd ...
1
vote
1answer
47 views

Group terminals into set

What does this warning mean ? How do I solve it ? Here is the code I am referring to expression : expression operator=DIV expression | expression operator=MUL expression | ...
0
votes
1answer
48 views

Trying to Treat Type Classes and Sub-types Like Sets and Subsets

This question is related to my previous SO question about type classes. I ask this question to set up a future question about locales. I don't think type classes will work for what I'm trying to do, ...
-2
votes
1answer
35 views

use a python set to report shells listed in /etc/passwd file

I need to know how to use a python set to list all the unique shells listed in the /etc/passwd file in the linux filesystem. This will be executed in a python shell from the command line.
0
votes
2answers
51 views

Iterate through TreeMap - Return a set of all values of the keys of the map

I have a database that maps course names to student id numbers. I need to iterate through the map to create another set that contains all students in the database. This is the code I have so far. Any ...
0
votes
2answers
95 views

Java Collections - Maps and Sets: put cannot be applied

I'm having trouble with some code. I am trying to create a student database. I need to create a set of students that is represented by a course name. The course name is mapped to the set of students. ...
1
vote
2answers
37 views

How can I shorten this xpath expression?

I have defined a variable called tags which selects a node set of elements whose names are one of several values: <xsl:variable name="tags" select="//xs:element[@name='Subscription' or ...
-2
votes
5answers
88 views

Check if value exists in mysql set, and if so, print it [duplicate]

How would I go about trying to check if a certain value exists in a mysql set? I have this code: that I was experimenting with (I doubted it would work) And it's throwing this error: $result = ...
0
votes
0answers
30 views

Why is this set of ordered pairs transitive?

{(1,1),(2,2),(3,3),(4,4)} I know that {(2,2),(2,3),(2,4),(3,2),(3,3),5,4)} is transitive but I don't understand the first one above. I thought if (a,b) and (b,c) then (a,c)?
0
votes
3answers
60 views

Which generic fast collection (set) provides getIndexFromValue or similar?

I need a collection that is a set (no duplicate values) and provides quick insert times. I also need to be able to get the index of a value. Pseudocode: Set.Insert(value) Set.GetIndex(value) The ...
0
votes
2answers
59 views

extracting item with most common probability in python list

I have a list [[1, 2, 7], [1, 2, 3], [1, 2, 3, 7], [1, 2, 3, 5, 6, 7]] and I need [1,2,3,7] as final result (this is kind of reverse engineering). One logic is to check intersections - ...
0
votes
1answer
141 views

Magento Bundle Product - selecting variants of products

I have a trouble with adding a multiple selecting sets in bundle product. I have a bundle product name Tunic Veto and It has a two variants of sets which customer can select - first, second or both ...
0
votes
0answers
21 views

Given a prefix, find intersections from a dictionary

A user inputs the prefix 'ex' as a string, it then makes a list so that you get the position followed by the letter so [0,'e'] and [1,'x']. Now i have a complete dictionary of words that contains the ...
0
votes
1answer
20 views

We have a set S of n potential investments

We have a set S of n potential investments, each given by a pair of floating point numbers (amount, estimated return) There is a total amount A to invest; we want to select investments to maximise the ...
1
vote
1answer
41 views

Manipulating sets in dictionaries

I need to update a dictionary with the use of sets that I have. My program needs to essentially take a set and assign it to a value (in a dictionary). If the set already exists, i need to update its ...
0
votes
1answer
73 views

count combinations in python

I have been puzzling for hours how to make a program for this problem. I searched for similar solutions but I had no success. There are 6 sets of 2 values a [a1,a2] ; b [b1, b2] ; ... f [f1, f2]. ...
0
votes
1answer
120 views

Finding the number of Disjoint Sets

I'm trying to find the number of disjoint sets for given N sets and M relations. For example given a relation "i j" ,I have to merge the sets containing these two elements. M and N can be as large as ...
-2
votes
2answers
61 views

ArrayList of Hashsets !! Compilation error [closed]

I'm writing a java program for joining sets. This is just a small portion of my code where I keep getting a compilation error. ArrayList<HashSet<Integer>> list = new ...
1
vote
1answer
100 views

Divide the set into group of two

Given is a set of elements. You have to divide them into groups of two, such that the difference between the sum of elements of an individual group is minimum. example: 5 4 6 7 2 1 two groups are: ...
1
vote
2answers
132 views

Iterating over two sets while updating two other sets in Haskell

I am trying to translate the following imperative code to a functional solution in Haskell. I want to compare the members of set s with members of set s' and update sets t and t' based on the ...
1
vote
1answer
114 views

clojure: permutations of subsets?

I'm new to clojure, looking for a function to generate permutations of subsets: => (find-subsets 1 #{1 2 3 4}) (#{1} #{2} #{3} #{4}) => (find-subsets 2 #{1 2 3 4}) (#{1 2} #{1 3} #{1 4} #{2 3} ...
0
votes
1answer
69 views

Dividing a text file into two files with non-overlapping entries

Let me explain the problem in detail... i have two text files (pool files) CL-0.txt and CL-1.txt I have to divide each of the two into two further parts. CL-0.txt into two further parts xx_0.txt and ...
1
vote
2answers
87 views

in python picking tuples from two list of tuples if both the list contain common elements

I want to make a new list of tuples from tuples of list1 if elements in list1 are present or common in list2. list1 = [('We', 'all'), ('all', 'live'), ('live', 'in'), ('in', 'a'), ('a', ...
0
votes
3answers
47 views

Searching through a set

I having a bit of difficulty trying to get through a set of strings. Methods used for vectors and arrays will not work here; I tried numerous ways trying traverse through a set, including calling an ...
0
votes
1answer
106 views

Distance between two pixels but belonging to different sets

How can I find the distance between two pixels belonging to two different sets? I think pdist does that but for a single object? Thanks.
0
votes
2answers
31 views

Deriving values from loop operation [closed]

This is language agnostic, but I am interested in the successful answer's problem solving process. I have the following three columns: 3 0 1 3 1 2 3 2 3 2 0 2 2 1 3 1 0 3 ...
4
votes
1answer
152 views

Find the maximally intersecting subset of ranges

If you have a set of ranges, such as the following simple example... [ [12, 25], #1 [14, 27], #2 [15, 22], #3 [17, 21], #4 [20, 65], #5 [62, 70], #6 [64, 80] #7 ] ... ...
1
vote
2answers
37 views

Mysql SET and querying subset with PHP

I have a basic mysql database and using php as a web service to my android application. There are 21 categories in my app and I am storing them in a column as a Mysql SET in the database. An article ...
-1
votes
2answers
119 views

Algorithm for finding a sum within an array? [closed]

Say you have some array with elements that you know are all positive, and smaller than a number N. Can someone give me a general, high-level description of an algorithm to find out whether there is ...
1
vote
1answer
111 views

Importing Sets in python

When I am trying to use sets it's showing that there is nothing named set. from sets import set > ImportError: cannot import name set How do I fix it?
5
votes
1answer
75 views

python 'and' behavior with sets

I know that if I want to get the intersection of two sets (or forzensets) I should use the ampersand &. Out of curiosity I tried to use the word 'and' a = set([1,2,3]) b = set([3,4,5]) print(a ...
0
votes
1answer
76 views

SoundCloud API - Load entire set into scPlayer

I want to get an entire set waveform overview like my soundcloud homepage has. .scPlayer({ links: [{url: permalink_url, title: ""}] where permalink_url is my set's URL - it will only load ...
-2
votes
1answer
147 views

SQLite removing a set where {A,B} and {B,A}

Can someone please help me on a sql query where there's a table such as Col A | Col B ------------- A B C D E F B A how do I remove {B, A} or select {B, A} The question is: ...
1
vote
1answer
14 views

Scala 2.9 : Any way to use toArray on a Set inline

If the answer to my question is already out here please link it... I did look. I'm working through some tutorials and it struck me a little odd that this code: val my_set = Set("one","two","three") ...
0
votes
2answers
80 views

Optimized Algorithm: Fastest Way to Derive Sets

I'm writing a program for a competition and I need to be faster than all the other competitors. For this I need a little algorithm help; ideally I'd be using the fastest algorithm. For this problem I ...
0
votes
1answer
67 views

how to compare values in set and rewrite them in python

here is my code I define an empty set, I want to compare se([i]) > 0, then reassign the value of se([i]) to be 0. I am not able to do this since se([i]) is a set and cannot be compared to int. ...
1
vote
4answers
296 views

Fast obtention of all the subsets of size N in Haskell

The following (unoptimal) code generates all the subsets of size N for certain subset. This code works but, as I said, is highly unoptimal. Using an intermediate list to avoid the O(log(n)) of ...
3
votes
4answers
73 views

Trying to put matrices into a set using python, but it still allows duplicates

I have a simple piece of code which doesn't run as expected. from numpy import * from numpy.linalg import * from sets import Set W = matrix('1, 1, 1, 1; 1, 1, -1, -1; 1, -1, 2, -2; 1, -1, -2, 2') E ...
1
vote
3answers
98 views

SQL counting distinct elements of overlapping sets

I want to count the number of distinct elements from two sets. Precisely this is the union of set 1 and set 2. How can I format the following pseudo SQL into functioning SQL select COUNT(set1 union ...
2
votes
1answer
55 views

Generate substrings using sets

My friend was asked a questions in his Interview. How can you find the all possible substrings of a given string ? I know this can be solved using many techniques, but later he was given a hint which ...
0
votes
1answer
98 views

Disabling mouseover on text in raphael js

I am just starting out with raphael js and I am kinda stuck here: http://jsfiddle.net/wC9hX/50/ I don't want the mouseover event to be active on the text label as it is causing the text to ...
2
votes
4answers
338 views

how can I implement the union and intersection of set theory with sets of objects

hi i've seen this post how to implement the union and intersection when it you have two sets of data,that are strings.how can i do the same when my sets contain objects,and i want to get the union of ...
0
votes
3answers
87 views

Difference between union() and union_update() in sets, and others?

Python sets have these methods: s.union(t) s | t new set with elements from both s and t s.update(t) s |= t return set s with elements added from t Likewise, there's also these: ...
3
votes
1answer
163 views

Parallel algorithm for set intersections

I have n-sets (distributed on n-ranks) of data which represents the nodes of a mesh and I wanted to know an efficient parallel algorithm to find the intersection of these sets, i.e., the common nodes. ...
-2
votes
1answer
59 views

How to type sets for a given string [duplicate]

Possible Duplicate: How can I obtain all the possible combination of a subset? I am trying to type the sets for a given string for example "123" will give {1}{2}{3}{13}{23}{12}{123}{} but ...
1
vote
1answer
225 views

Finding the distance between two sets in Manhattan distance

I'm learning for the test from algorithms and I spotted problem that I cannot deal with for a few days. So I'm writing here for help. For a given two disjoint sets on plane: G={(x_1^G, y_1^G), ...
1
vote
3answers
146 views

How can I (more) easily compare two sets of numbers?

I have sets of three numbers, and I'd like to compare numbers in a set to another set. Namely, that each number in the first set is less than at least one number in the other set. The caveat is that ...
0
votes
3answers
57 views

SQL Select Sets / Years 1-10 of Results

I always only need the most recent 10 years of data from the result set. The years will always have multiple records, so I can not pull only the first 10 records. How can I: SELECT Set 1, SELECT Set ...
0
votes
1answer
165 views

Axioms, Functional Dependencies

I am having issues proving functional dependencies with Armstrong's Axioms. This one i'm struggling with. Let R(A,B,C,D,E) be a relation schema and F = {A→CD, C→E, B→D} 1. Prove: F: AC-> BC I have ...

1 2 3 4 5 9