Welcome to my personal Java repository! Here, you'll find a collection of Java implementations showcasing various algorithms and data structures. These projects range from basic exercises to more complex applications, showcasing my growth and learning journey in Java programming.
This repository is neatly organized into four key directories, each containing Java code:
- Artemis_Tasks: Engaging Java exercises and challenges to test your programming mettle.
- CodeForces: Solutions for a variety of CodeForces problems, crafted in Java.
- Data_structures: Core Java implementations of essential data structures.
- Simple_algorithms: A range of basic algorithms that demonstrate fundamental coding techniques in Java.
While this repository hosts a selection of my individual work, the majority of my collaborative projects, especially those related to university coursework, are available in a shared repository. My friend and I have also started a YouTube channel for Java tutorials, primarily aimed at helping fellow students.
🔗 Check out our collaborative work: University Projects Repository
📺 Our YouTube Channel: Channel Name
Ensure you have Java installed on your system to run the programs. You can download Java from the Oracle Java download page.
For Git aficionados, clone this repository using the command:
git clone https://github.com/daatoo/JourneyInJava.gitOnce you have the code on your machine, running it is just as straightforward.
- Open a terminal or command prompt.
- Navigate to the folder containing the code you want to run.
- Compile the Java file using the Java compiler:
javac FileName.java- Run the compiled Java program:
java FileNameDon't forget to replace FileName with the actual name of the file you wish to run.
And that's it! With these simple steps, you'll be running Java programs in no time.