Tagged Questions
0
votes
2answers
49 views
Finding the indices of matching elements in list in Python
I have a long list of float numbers ranging from 1 to 5, called "average", and I want to return the list of indices for elements that are smaller than a or larger than b
def find(lst,a,b):
result ...
0
votes
3answers
34 views
Appending new values to a python list
Lets say I have two lists:
x = [1,2,3,4]
y = [1,4,7,8]
I want to append to x any values in y that are not already in x. I can do this easily with a loop:
for value in y:
if value not in x:
...
1
vote
4answers
65 views
Determining if two objects are equal
I'm trying to test whether an object is equal to one in a list of objects given certain criteria (is name equal) and if it is, don't add it to list, otherwise add it. I have to use a method with this ...
0
votes
1answer
60 views
Creating a find method
I'm trying to create a find method from scratch to see if two objects are equal given that certain members are equal, using the Equals method to do so. I know using the Find/Contains methods would be ...
0
votes
0answers
14 views
switching a word within a string from a list of a list
`>reflections = \
[["I", "you"],
["i", "you"],
["We", "you"],
["we", "you"],
["We're", "you're"]]
def sample(string):
string = string.split()
for ...
0
votes
1answer
44 views
How to Search Stl List Item With Alghorithm Find()
I have a list with nodes with this structure:
private:
char namefield[30];
char tam[3];
char type[1];
};
I want to find and element with the find function from alghorithm class but I ...
0
votes
1answer
59 views
Check list or strings to see if a string from another list is present
I have a list of strings in ListA, and I need to check if any string from listA is in the ith element of listB. If yes, I need to append a string to listB.
For example
ListA = [['Chicago'], ...
1
vote
2answers
222 views
Use of List.Find in vb.net
I have two columns. one column contains string value and another column contains decimal value. I want to select decimal value by selecting string value.
string decimal
Jewel 10
...
1
vote
2answers
118 views
Access text of list item using jQuery
I need to get the text of a list item in my menu but don't seem able to grab it.
This is how the menu in my div looks:
<div id='imgbox_1' class='unlocked'>
<div id="imgbox_1_menu" ...
1
vote
2answers
459 views
Scala check if element is present in a list [closed]
I need to check if a string is present in a list, and call a function which accepts a boolean accordingly.
Is it possible to achieve this with a one liner?
The code below is the best I could get:
...
3
votes
4answers
174 views
Python: Optimized method of cutting/slicing sorted lists
Is there any pre-made optimized tool/library in Python to cut/slice lists for values "less than" something?
Here's the issue: Let's say I have a list like:
a=[1,3,5,7,9]
and I want to delete all ...
1
vote
1answer
108 views
How to find an object from a list
I used the following program to create a list of cities obtained from a website. Now I want to find the name of city (argument) from the list I created. How do I do that?
In other words, how do I ...
-2
votes
2answers
89 views
Minus 1 in Python query
when you have a code that includes
find list[7].find('~') == -1
process
in this case, what does the -1 stand for?
I have attempted to change the numbers to different digits, but keep getting ...
0
votes
1answer
75 views
How to find the same item in multiple lists?
If there are more than 1 list with different length, what's the fast way to find out same item in each list?
1
vote
4answers
66 views
Append two integers to list when seperated by '..' Python
If i have a list strings:
first = []
last = []
my_list = [' abc 1..23',' bcd 34..405','cda 407..4032']
how would i append the numbers flanking the .. to their corresponding lists ? to ...
0
votes
1answer
51 views
Searching by a specific variable in a class
I have a list of pointers to classes:
list<AbsClient*> clients;
AbsClient could be 1 of 3: TempClient , RegisteredClient , VIPClient.
Inside AbsClient there's a protected variable: ...
0
votes
2answers
525 views
CakePHP find list of associated items where id is
I want to create in cake php application with users, games and games platforms (for ex PS3)
I got tables:
userGames (game have one platform)
id, name, platform_id
users (users can have many ...
0
votes
2answers
112 views
Using Contains() list method to evaluate list contents
I have a list that contains 3 items, two of type_1, and one of type_2. I want to return a second list that contains the type and number of that type that exists. When stepping through the ...
2
votes
7answers
3k views
Check if one list contains element from the other
I have two lists with different objects in them.
List<Object1> list1;
List<Object2> list2;
I want to check if element from list1 exists in list2, based on specific attribute (Object1 ...
2
votes
4answers
180 views
find Object by its member insde a List in python
lets assume the following simple Object:
class Mock:
def __init__(self, name, age):
self.name = name
self.age = age
then I have a list with some Objects like this:
myList = ...
1
vote
4answers
652 views
C# Find object in List<T>
I have a List. I want to know how to write LINQ or so to find if their exists an obj of MyTypes whose id = "CLR".
I would like to know if it exists and its index. So if it exists, then thru its index ...
-1
votes
1answer
32 views
List.Find and CompoareTo to get the lowest value
How would I write Find() to get the lowest value in a List? Is it possible? Thanks!
class testClass
{ int value; }
List<testClass> newList;
newList.Find((a,b) => ...
0
votes
1answer
52 views
Find and print equals in a list
Given a list of 50 random integers in the range [n,k], where n is less than k. I would like to find
how many numbers are equal to each other and print them.
1
vote
1answer
136 views
Bash: Delete the first element of a list stored in a variable
I'm using Dirlist=$(find $1 -type d) to get a list of the subdirectories of the directory given as the $1 argument, but I need to eliminate from Dirlist the first element of the list (the directory $1 ...
2
votes
1answer
289 views
Position element in ordered list in logarithmic time Python
I have a sorted list and i need to position an element within that list such that the previous element is <= and the next element in the list is > (the list is a list of floating point numbers)
I ...
1
vote
2answers
116 views
F# find in list of records the records with same id and add up their values
Iam an F# newbie, I have following starting point:
type aB = { ID: int; Slide: list<string * int> }
// examples of aB's
let aB1 = { ID = 1; Slide = [("-10%",-20); ("0%",0); ("10%",20)] }
let ...
-1
votes
4answers
169 views
Find the two longest strings from a list || or the second longest list in PYTHON
I'd like to know how i can find the two longest strings from a list(array) of strings or how to find the second longest string from a list. thanks
2
votes
6answers
4k views
How can I find a specific element in a C# List?
My application uses a list like this:
List<MyClass> list = new List<MyClass>();
Using the Add method another instance of MyClass is added to the list.
MyClass provides a.o. the ...
0
votes
2answers
76 views
How to find an element in a list which is part of another element in another list in Python
I have this list:
dc = ["hello", "world"]
And this other:
lines = ["This is", "an example of hello", "line in the world of strings", "Testing"]
I wish to find those elements on dc which are part ...
1
vote
3answers
578 views
find and findindex painful slow for List<Object> why?
Im am working in a project that uses intensively List and i try to find the object via the name (that is a member of the object).
My code worked without searching it using a single for-next loop ...
2
votes
0answers
236 views
Lithium - using find('list') with SQL's DISTINCT gives me an empty array
I'm trying to use Lithiums list option with find() along with SQL's DISTINCT.
I should get an array populated with values, instead, I'm getting an empty array.
This does make sense since I'm passing ...
0
votes
1answer
210 views
SML: find maximal element in a given column of a list
I need to find a greatest element in the given COLUMN of the list:
myList = [(1,2,0), (3,5,8), (9,1,2)]
Something like this:
max(myList(:,2)) // maximal element in the 2nd column
In this ...
1
vote
2answers
239 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
...
2
votes
1answer
2k views
Find index of iterator in STL container - need template function
I want to have a function with interface like this:
template<typename T, typename R> int find_index (const T& list, const R& value);
As I know, there is find() in STL that returns ...
2
votes
4answers
141 views
Finding an exact position of a smaller list inside a list (python)
So i Have a list which is something like this:
list=[10.0, 10.0, 10.0, 9.9, 9.9, 9.9, 10.0, 9.9, 10.0, 10.0, 10.0, 10.0, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 10.0, 10.0, 10.0, 10.2, 10.0, 9.9, 9.9, 9.9, ...
0
votes
1answer
6k views
how to find Index of an object from list in vb.net
Say I have a list and I have an object. I want to find the index of that object in the list.
Any help is appreciated.
0
votes
5answers
118 views
Ruby: Match an item to a list of items
Let's say I want to group States into Regions. For instance, the Southwest Region might be: Texas, Oklahoma, Colorado, New Mexico, Utah, Arizona, Nevada.
Somehow I need to create the list of states ...
0
votes
1answer
54 views
Need help listing symbolic links
On a Unix/Linux system I need to run the "find" command on a set of directories to find what all the symbolic links within those directories are. I need to get a list of the symbolic link paths in ...
6
votes
3answers
1k views
find an item in a list of pointers
I am trying to understand how to find an item in a list of pointers in C++, using std::find
If I had for example:
std::list<string> words;
std::string word_to_be_found;
I could just search ...
3
votes
2answers
680 views
There is no Find extension method for List in Silverlight?
I am working on a silverlight application and i figured there is no Find extension method for a List
say,
List<Something> list = new List<Something>(something);
list.Remove(list.Find(e ...
5
votes
3answers
8k views
find index of an int in a list
Is there a way to get the index of an int from a list?
Looking for something like list1.FindIndex(5) where I want to find the position of 5 in the list.
1
vote
3answers
2k views
Linux: Find a List of Files in a Dictionary recursivly
I have a Textfile with one Filename per row:
Interpret 1 - Song 1.mp3
Interpret 2 - Song 2.mp3
...
(About 200 Filenames)
Now I want to search a Folder recursivly for this Filenames to get the ...
2
votes
3answers
2k views
Linux find files and grep then list by date
I'm trying to find files with the name of formClass.php that contain a string of "checkCookie" and list the files by date showing date, size, owner, group. The files are in my home dir.
I have this ...
4
votes
3answers
4k views
Fastest way to search a list in python
When you do something like "test" in a where a is a list does python do a sequential search on the list or does it create a hash table representation to optimize the lookup? In the application I need ...
0
votes
1answer
96 views
Find a element of a list in a another list in Prolog
i try to solve a problem about lists but i can't... :(
PLAYER(TEAM,[PLAYERS WHO PLAY IN THAT TEAM]).
player(milan,[seedorf,zambrotta,gattuso]).
player(inter,[seedorf,ronaldo,zambrotta]).
...
0
votes
1answer
1k views
Python: Find item in multidimensional list
I have a list of lists, a snippet of which is below:
x_attrib = []
self.x_attrib.append(["Is_virtual", False, 'virtual', 'flag'])
self.x_attrib.append(["X_pos", None, 'pos/x', 'attrib'])
...
0
votes
2answers
94 views
Refactor to filtering lists using LINQ
I use several lists of similar objects. Anyone object has a List property. Basically, I need compare several lists.
I would have thought that LINQ would be an ideal way of doing this but after trying ...
1
vote
1answer
171 views
cakePHP, encoding problem when using find+list, no problem when using find+all
Well, I've configured the database.php file, added the 'encoding'=>'utf8' option.
also added the $this->charset('utf8') to my view.
Now, when I use the find('list') and echo its content I get ...
11
votes
4answers
28k views
C# - using List<T>.Find() with custom objects
I'm trying to use a List<T> with a custom class of mine, and being able to use methods like Contains(), Find(), etc., on the list. I thought I'd just have to overload the operator == but ...
1
vote
2answers
901 views
Finding Class Elements in a List of Classes
I am trying to use the "List.Find" method to find a match with an element in my class. Here is an example...
class MyClass
{
String item1;
String item2;
}
List<MyClass> myClassList = ...



