Resolved list and sublist

-Nono-

New member
Joined
Mar 28, 2023
Messages
3
Programming Experience
Beginner
Good morning,

I would like to create a piece of program allowing to create two lists in a list, let me explain,
To sort the first and arrange them in alphabetical order then add the second list to it at the end.
So to check if in the initial list there is an element that corresponds to the criteria of list 1, and add it, if not put it in list 2.

thank you in advance for reading me,
I hope someone can help me.
 
You can have a list of lists using out of the box data structures. It will look externally like a list that has two lists.

It is much more difficult to create a list composed of two sublists where externally it looks like a single list. For that you will have to do some custom coding.
 
You can have a list of lists using out of the box data structures. It will look externally like a list that has two lists.

It is much more difficult to create a list composed of two sublists where externally it looks like a single list. For that you will have to do some custom coding.


Thank you very much, it's all good my problem is solved, I did as you said.
 
Back
Top Bottom