1
vote
1answer
8 views
Comparing user input integers to dictionary values? (Python)
Hey everybody,
I'm a python noob and I'm trying to write a program that will show a user a list of phone numbers called greater than X times (X input by users). I've got the program to successfully …
4
votes
7answers
131 views
Java: How do I perform list operations with different definitions of equals?
Java: How do I perform list operations with different definitions of equals?
I have two lists of generic POJOs. I need to perform some set operations on the lists based on different ways of comparing …
0
votes
1answer
11 views
[Flex] How to get the viewport element index
I use flex4 list:
<component:SmoothScrollingList x="200"
y="180"
dataProvider="{myProvider}"
itemRenderer="myitemdrender.FriendPageItemRender"
…
3
votes
2answers
87 views
Creating a generator expression from a list in python
What is the best way to do the following in Python:
for item in [ x.attr for x in some_list ]:
do_something_with(item)
This may be a nub question, but isn't the list comprehension generating a …
2
votes
6answers
95 views
Java PriorityQueue with fixed size
Hi folks,
I am calculating a large number of possible resulting combinations of an algortihm. To sort this combinations I rate them with a double value und store them in PriorityQueue. Currently, …
2
votes
5answers
110 views
C++: newbie initializer list question
Hi,
Newbie here. I am looking at company code.
It appears that there are NO member variables in class A yet in A's constructor it initializes an object B even though class A does not contain any …
1
vote
5answers
67 views
Add TM to text with jQuery?
I need a way to go through all the text on my page, including links and other controls and find words that are in a certain list and add the html character entity ™ (™) to them.
I need …
-1
votes
1answer
13 views
List folders and subfolders from a directory in Excel with hyperlinks?
Hi,
I am looking for a vb script that would list the folders and subfolders from a directory, and output it to excel so that i could open the folders via hyperlinks.
I am trying to create a sort of …
1
vote
3answers
34 views
LINQ variable to list of string without using column names?
In an C# ASP.Net MVC project, I'm trying to make a List<string> from a LINQ variable.
Now this might be a pretty basic thing, but I just cannot get that to work without using the actual column …
0
votes
5answers
112 views
C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar?
I have a DataSource in my control which is always a List<T> where T has to inherit from IEntity.
public class MyClass<T> where T : IEntity
{
public List<T> DataSource
{
…
2
votes
6answers
148 views
Python: check if an object is a list or tuple (but not string)
This is what I normally do in order to ascertain that the input is a list/tuple - but not a str. Because many times I stumbled upon bugs where a function passes a str object by mistake, and the target …
1
vote
1answer
17 views
Varying amount of dictionaries in a DataTable
Earlier I asked a question about merging a known number of dictionaries into 1 single DataTable: http://stackoverflow.com/questions/1831209/dictionaries-in-datatable
Darin provided me with a …
0
votes
1answer
37 views
Nested List Question
I have a question about Nested Lists.
I have a class similar to the following...
public class Order
{
private Guid id;
[DataMember]
public Guid ID { get { return id; } set { id = …
0
votes
1answer
24 views
How do I alphabetically sort a generic List(Of String) in VB.NET?
I've created and populated a generic list of strings like this:
Dim MyList As New List(Of String)
MyList.Add("Beta")
MyList.Add("Echo")
MyList.Add("Charlie")
MyList.Add("Alpha")
MyList.Add("Delta")
…
1
vote
6answers
102 views
Ranking Elements of multiple Lists by their count in Python
I want to rank multiple lists according to their elements how often they appear in each list. Example:
list1 = 1,2,3,4
list2 = 4,5,6,7
list3 = 4,1,8,9
result = 4,1,2,3,4,5,6,7,8 (4 is counted three …
