+ 1
As a beginner,what codes should I try in Python?
3 Antworten
+ 5
Mine was this one:
https://code.sololearn.com/cRqDeh0LFCLy/?ref=app
+ 4
In most languages I learned, the first thing I implemented after learning how the control structures work, was a primality test.
Building a graph class and implementing Dijkstra's Algorithm is a cool micro project. Just picking any standard algorithm and implementing it in your language of choice is a good practice, as it makes you think about which data structures to use how and where or what is the smart way to implement backtracking etc...
+ 3
https://code.sololearn.com/c2zGq2qQ63J8/?ref=app
This was my first Python code
Try making something like this