0
votes
2answers
23 views
functions that produce lists of lists in scheme
Hi,
I'm trying to use scheme to write a function f that takes a number n and a function g and returns a list of lists of length n, but according with booleans according to the pattern indicated by …
0
votes
2answers
52 views
Search Python list and return 2 or more of the same character
Hey,
I've just started to learn Python and I'm creating the game Hangman. I've got the basic functionality down. I have a list containing the words and they're randomly selected. I have an input for …
0
votes
3answers
37 views
jQuery checkbox manipulation
I have a list of checkboxes, looking like this:
<table>
<tr><td><input type="checkbox" /> <label>Bla</label></td></tr>
<tr><td><input …
1
vote
5answers
110 views
Converting a Tuples List into a nested List using Python
I want to convert a tuples list into a nested list using Python. How do I do that?
I have a sorted list of tuples (sorted by the second value):
[(1, 5), (5, 4), (13, 3), (4, 3), (3, 2), (14, 1), …
1
vote
2answers
55 views
Nested ordered lists
Hi, have any of you ever had the need for a nested list like this:
1. Item 1
1.1 - Subitem 1
1.2 - Subitem 2
1.3 - Subitem 3
1.4 - Subitem 4
1.5 - Subitem 5
2. Item 2
2.1 - Subitem 1
…
1
vote
4answers
49 views
Adding a list item within another list
Ok I have a class similar to the following...
public class Order
{
private Guid id;
[DataMember]
public Guid ID
{
get { return id; }
set { id = value; }
}
…
0
votes
2answers
28 views
List management problem…
I have a datasource, which I show as a list in a Flex UI.
I refresh the list periodically, One of my UI requirements is to gracefully show when the datasource removes an item from the list, So I'm …
1
vote
3answers
48 views
Center UL into a table
I have a code like this:
<table>
<tr>
<td align="center">
<ul>
<li style="float:left;display:inline">Some text</li>
<li …
2
votes
8answers
120 views
How do I check the index of a an element in a list? (Python)
list = [('ba',4), ('hh',5), ('gg', 25)]
How do I do:
list.index('hh') ...and returns 1?
Then, how do I sort it by the 25, 5, 4?
What if I have 2 lists:
list1 = [('ba',4), ('hh',5), ('gg', 25)]
…
0
votes
1answer
83 views
Haskell List Comprehension
I get the error "Not in scope: x" when doing as follows...
blanks :: Sudoku -> [Pos]
blanks (Sudoku su) = [ fst x | x <- posSud | isBlank (snd x) ]
where
isBlank Nothing = True
…
0
votes
5answers
102 views
Creating new list with values from two prior lists.
Given the lists list1 and list2 that are of the same length, create a new list consisting of the last element of list1 followed by the last element of list2 , followed by the second to last …
0
votes
4answers
83 views
Appending lists from files to a single list in Python
I'm trying to write a function that reads files from a "deferred" directory which contains files that contain lists. Here's what the files in the deferred folder contain:
'173378981', '45000', …
1
vote
1answer
29 views
Need an advice regarding accessing the database
Suppose I have a Comment class having properties and their methods
like
public Comment GetComment(Guid id)
And
public static List<Comment> GetComments()
public static List<Comment> …
0
votes
3answers
130 views
python : list index out of range error
I have written a simple python program
l=[1,2,3,0,0,1]
for i in range(0,len(l)):
if l[i]==0:
l.pop(i)
This gives me error 'list index out of range' on line if l[i]==0:
After …
6
votes
6answers
221 views
ok, this worked. what is it exactly?
I just lifted this snippet from a website and it proved to be exactly the solution I needed for my particular problem.
But I have no idea what it is (particularly the delegate and return parts) and …
