Tagged Questions
A list comprehension is a syntactic construct available in some programming languages for creating a list based on existing lists.
16
votes
14answers
1k views
Why is it still so hard to write software?
Writing software, I find, is composed of two parts:
the Idea, and
the Implementation.
The Idea is about thinking: "I have this problem; how do I solve it?" and further, "how do I solve it ...
8
votes
3answers
166 views
Help me understand PHP variable references and scope
References:
If I pass a variable to a function (e.g. $var), is that supposed to be a copy of a reference to the actual variable (such that setting it null doesn't affect other copies)?
Or is it ...
7
votes
2answers
192 views
Understanding code
What is the best way to get acquainted with C# codebase of approximate size 200K LOC? Are there any tools available?
http://www.program-comprehension.org/ It seems there is an event going for a long ...
6
votes
1answer
151 views
Is “Access to modified closure” resolved by comprehension syntax?
ReSharper 6.0 gives me the "Access to modified closure" warning for the dr identifier in the first code snippet.
private IEnumerable<string> GetTheDataTableStrings(DataTable dt) {
foreach ...
6
votes
9answers
2k views
How do I efficiently filter computed values within a Python list comprehension?
The Python list comprehension syntax makes it easy to filter values within a comprehension. For example:
result = [x**2 for x in mylist if type(x) is int]
Will return a list of the squares of ...
5
votes
1answer
148 views
Python: Yield Dict Elements in Producing Coroutines?
Before I say a word, let me thank the community for being the authoritative location for my programming queries as of recent. And pretend those compliments weren't expressed using words. Anyway, the ...
5
votes
6answers
156 views
Python, working with list comprehensions
I have such code:
a = [[1, 1], [2, 1], [3, 0]]
I want to get two lists, the first contains elements of 'a', where a[][1] = 1, and the second - elements where a[][1] = 0. So
first_list = [[1, 1], ...
5
votes
4answers
268 views
haskell list comprehension (number theory problem)
I tried solving the following problem in haskell:
Find the smallest number b with (a^b
mod 100) = 1 for every a with
gcd(a,100)=1
I tried this:
head[ b | a <- [1..], b <- [1..], (a^b ...
5
votes
8answers
1k views
C++ source code comprehension tools
I'm starting work on a huge C++ codebase, and was wondering if someone could suggest good source code comprehension tools.
I usually use doxygen but was curious to see if anything better existed.
...
4
votes
2answers
208 views
Can someone please help me understand the following Ruby snippet?
I recently ran into a permgen memory leak running Sinatra on JRuby in Tomcat. The problem had to do with the Tilt library that Sinatra uses to support various templating options. The old code (which ...
4
votes
4answers
2k views
Comprehension for flattening a sequence of sequences?
If I have sequence of sequences (maybe a list of tuples) I can use itertools.chain() to flatten it. But sometimes I feel like I would rather write it as a comprehension. I just can't figure out how to ...
3
votes
4answers
223 views
General comprehensions in Scala
As far as I understand, the Scala for-comprehension notation relies on the first generator to define how elements are to be combined. Namely, for (i <- list) yield i returns a list and for (i <- ...
3
votes
4answers
256 views
how is this a non-sequence?
I'm running a list comprehension of a list of numbers as strings so for example the list looks like this
vals = ['0.13', '324', '0.23432']
and try a list comprehension like this:
best = [x for x ...
3
votes
4answers
179 views
Program comprehension strategies
If you were assigned to a very large project, with sparse documentation/comments and little access to previous developers, and tasked with fixing some tricky little bugs, how would you go about:
...
2
votes
6answers
68 views
How can a function return a dynamic value that depends on the number of receivers in Python?
I was trying to do a "strange" (but useful in my case) function that can return a dynamic list whose len depends on the amount of receiver.
For example:
f() returns a dynamic list of None, so I can ...
2
votes
3answers
64 views
Finding matches in a list property, in a list of class Instances
I have a class, 'Foo', which has a name (string) and a set of data (a list of integers). I need to be able to find 'test' any string/list combination against a list of Foo's, to find any matches. Like ...
2
votes
2answers
91 views
matrix list comprehension mean
This is an offshoot of a previous question which started to snowball. If I have a matrix A and I want to use the mean/average of each row [1:] values to create another matrix B, but keep the row ...
2
votes
1answer
130 views
Translating query comprehension to Enumerable extension methods in LINQ
How do I translate the following query to functional calls? I know the compiler does this behind the scenes but don't know how I would view the result
var query = from item in ...
2
votes
3answers
129 views
Set comprehensions don't work on Pydev (Python)
{x for x in range(10)}
works perfectly on IDLE, but when I try this in eclipse (with Pydev plugin) I get a syntax error:
Undefined variable: x
Is it because Pydev doesn't support set ...
1
vote
2answers
133 views
Python list comprehension and list.remove()
The list signals_by_date stores tuples and each tuple contains 15 numbers. For each tuple within signals_by_date, I want to remove numbers that don't satisfy certain criteria. For some reason, no ...
1
vote
2answers
202 views
elem function of no limit list
list comprehension haskell
paar = [(a,b) | a<-[a | a<-[1..], mod a 3 == 0], b<-[b*b | b<-[1..]]]
a = divisor 3
b = square
The Elements must be constructed by equitable order.
the ...
1
vote
3answers
526 views
Python - Compare two lists in a comprehension
I'm trying to understand how comprehensions work.
I would like to loop through two lists, and compare each to find differences.
If one/or-more word(s) is different, I would like to print this ...
0
votes
3answers
78 views
matrix holes comprehension
This is an offshoot of a previous question which started to snowball. If I have a matrix A and I want to use the mean/average of each row [1:] values to create another matrix B, but keep the row ...
0
votes
1answer
95 views
Haskell: List comprehension of Glade entries
I want to make an entries :: Map(String -> Entry) so I can easily access each entry by name. To this end, I have the code
Just xml ← xmlNew "blah.glade"
...
entries ← fromList $ ...
0
votes
4answers
191 views
Creating a dictionary from a csv file?
I am trying to create a dictionary from a csv file. The first column of the csv file contains unique keys and the second column contains values. Each row of the csv file represents a unique key, value ...
0
votes
3answers
333 views
Python list dictionary comprehension
I have a few 'list' containing few dictionaries- say 3 dicts.
3 dictionaries as follows:
lstone = [{'dc_test': 1}, {'ac_test':2}, {'con_test':3}]
lsttwo = [{'dc_test': 4}, {'ac_test':5}, ...
0
votes
3answers
224 views
python list comprehension unzipping multiple returns
anyone have any idea how to unpack the values in a tuple for a list comprehension?
So a practical example:
def func(x,y):
return x*2, y*2
x = [1, 2, 3]; y = [1, 2, 3]
a, b = [ func(i,j) for i, ...
-1
votes
1answer
164 views
python list comprehension products
I'm trying to build a specific list comprehension to take data from list of lists/matrix A and matrix B to generate a third matrix, C. I've annotated the code and provided the expected outcome, but ...
-1
votes
1answer
99 views
Please help with a dictionary comprehension in LINQ, C#
Python's equivalent of what I want is:
>>> #C#: Dictionary<int, string> tempDict = ...
>>> tempDict = {i : str(i) for i in range(200000)}
>>> tempDict[5]
'5'
...
-2
votes
1answer
145 views
Making a list comprehension, beginner
I'm new to Python and am trying to understand list comprehensions so I can use it in my code.
pricelist = {"jacket":15, "pants":10, "cap":5, "baseball":3, "gum":1}
products_sold = []
while True:
...