+ 1
What could be a good beginner (bronze) project?
Considering I have finished the first 4 chapters of the Python tutorial. Only thing I can come up with is a simple calculator but I think I won't feel satisfied with that. Any ideas?
5 Answers
+ 10
Numberphile leisure can be a daunting challenge for a beginner. Try to write a script for prime numbers, perfect numbers, Collatz conjencture, Kaprekar constant or something like that.
Feel free to look at my beginner codes for inspiration ;)
+ 2
I like doing the challenges that people post here. A lot of them can be done (if sometimes in a bit of a longwinded way) with what you've already learned, and after you've had a go at writing your code for it you can look at how other people have approached the same problem and learn from them.
+ 2
A program that solves Sudokus.
I did it in Java after I learned the basics. It took me a lot of thinking, but it was very satisfying when I finally finished and tested it!
It doesn't need advanced tools, but you need to know how to structure it well
+ 2
I made a jeopardy style game as a challenge for myself. feel free to check my code for a idea. now I'm moving onto data science via a course offered by EDX. Once you have the fundamentals down it's time to move on to specialization be it AI, Data analysis, GUIs, video games. whatever your heart desires.
0
Implement Radix Sorting. Nice challenge to get up with.