Questions tagged as 'lista'

1
answer

Help with logic

I have a method that reads multiple tags from an .xml file and returns a list populated by the read data. Problem: Each xml file has several batches and inside the batch has several tabs, for example, I have a client named Rodrigo and it is i...
asked by 22.05.2015 / 15:10
1
answer

running split () to form a list within another list

I have the following list: [['a:/, b:/, w:/, g:/, f:/, d:/Downloads/Torrent/End, x:/files.2t, y:/files.1t'], ['d:/Dropbox/project/rato_bat'], ['data']] But I wanted it to be a list inside another list because I did this: for a in lldi...
asked by 26.07.2016 / 20:41
1
answer

How to extract all nth element from a list?

Considering a list consisting of several vectors: lista<-list(c("1949", "1963", "45", "X2752009", "X2752013", "X2753007", "X2850009", "X2851005", "X2851008", "X2851014", "X2852002", "X2852003", "X2852011", "X2852016", "X2852020", "X2853005"...
asked by 23.05.2016 / 17:06
1
answer

Send only list object that has changed to the controller

I have a view that lists all my clients . Each client has 3 checkbox where the user selects the same, and sends to controller - through the button (submit) - the data to change. The method is working perfectly. However, whe...
asked by 22.07.2015 / 16:52
1
answer

Placing elements from a list in another list

I have the following code: a = list() b = list() c = list() a = (1,2,3) b = (2,4,6) c = a + b[1] print(c) How do I add an element from a list to another list?     
asked by 17.08.2016 / 04:57
1
answer

Rename an element in a JList

Greetings, friends. I have a problem with Java. I'mtryingtoaddanelementoftype"Occurrence" in a JList. This element has 4 elements inside it, which I need to keep. So far so good. However, the problem appears when I add that element to...
asked by 23.11.2015 / 17:19
1
answer

Write list in binary file

The idea of this method is to write all words from a list of nodes in a binary file. I have a linked list of nodes, where each node has two information, its information, and a reference to the next node in the list. The idea is to write the info...
asked by 26.11.2015 / 11:51
1
answer

How to Make a Chained List in Assembly?

I have a college job and need to do a linked list in assembly , I would like to know how to loop to insert all the elements in the list and keep them on . The list should contain the data of a broadcaster (name of the film, main actor, number...
asked by 29.04.2014 / 22:48
1
answer

How to extract JSON Array into an object's List attribute of an object

I'm using the Flickr API to get the information from the images, which returns the following JSON:   per page ": 100," total ":" 5964 "," photo ": [" id ":" 21577339501 "," owner ":" 85277110 @ N02 "," secret ":" 31e850dfeb "," server ":" 578...
asked by 12.10.2015 / 01:32
2
answers

How to get position of a sublist within another list?

I have a list of bytes and I need to check if it contains a sub-list of bytes in a specific order. How can I make this check by getting the position of the sub-list in a simple way, using the Linq or the List features, that is,...
asked by 25.04.2014 / 21:23