Skip to content

Advanced-Programming-1403/First-Assignment-WarmUp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

First Assignment - WarmUp

Welcome back to coding!
Let's kick things off by solving three basic problems to refresh your knowledge of Java and Git.

Getting Started

Follow these steps to set up your project:

1. Fork and Clone the Repository

Fork this repo and clone it to your local machine via Git:

git clone <repository_url>

2. Unit tests

  • In the test folders there are some unit tests using junit library that you and your mentors will use in order to test the correctness of your programm.
  • You can run the file or individual functions to see the results of the test in Intellij idea.

3. Complete the Tasks

  • Implement the required code based on the comments in the given files.
  • The project structure looks like this:
src
├── main
│   ├── java
│   │   └── Exercises.java
│   └── resources
└── test
    └── java
        ├── TestFib.java
        ├── TestPrime.java
        └── TestTriangle.java
  • Each file under test/java should be executed, and all test cases must pass to confirm your solutions work properly.

4. Commit Your Work Locally

To stage and commit files, use the following Git commands:

  • Stage a specific file:

    git add <file_name>
  • Stage all files at once:

    git add .

    or

    git add -A
  • Commit changes:

    git commit -m "Your descriptive commit message"

5. Push to Remote Repo

git push origin Develop

6. Share with Your Mentor

  • Add your mentor as a collaborator to your forked repo.
  • Push the final commit before the deadline.

Prerequisites

Before starting, ensure you have:

  • Basic knowledge of Java
  • A good grasp of Git commands

Resources


Good luck, and happy coding!

About

A review on java syntax by implementing former algorithms

Resources

Stars

Watchers

Forks

Contributors 2

  •  
  •  

Languages