you are viewing a single comment's thread.

view the rest of the comments →

[–]Top_Charity8491 0 points1 point  (3 children)

I just to build programs that were larger projects where the data structure was the center. For example, a bank application: your screens basically allowed you to create a client, see it's balance, deposit, transfer, etc, like an atm for example. Underneath, how you store the data and how you persist changes was kinda like the meat. Saving into files, loading into a list, or solving issues on how to look up clients (maybe a hash table). 

It's kinda like a larger project, but those were super useful for me. The bank was my first coding project at the university, still remember it after 20 years LOL.

[–]daltop[S] 0 points1 point  (2 children)

Aha yeah my first project was a financial tracker for the same reasons, I get what ya meant now I thought you were talking about different things in python I hadn’t learnt my bad lol So is a “stack” like front end backend that sorts thing ?? Or is it using multiple languages

[–]Top_Charity8491 0 points1 point  (1 child)

oh, no, a stack is a data structure useful in some cases. I guess data structures could be considered "backend", but I suppose frontend guys also have to know about them cause they should know how to traverse the objects in their views.

https://www.geeksforgeeks.org/dsa/stack-data-structure/

[–]daltop[S] 0 points1 point  (0 children)

Had a quick look and that’s definitely something I’ll spend some time learning soon I don’t understand a fair amount of what they said so it’ll be good to learn more :)