Hard Prerequisites | |
IMPORTANT: Please review these prerequisites, they include important information that will help you with this content. | |
|
|
Soft Prerequisites |
|
├── build.gradle
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── settings.gradle
└── src
├── main
│ └── java
│ └── ChickenFarm.java <-------- names are important
└── test
└── java
└── ChickenFarmTest.java <-------- names are important
In this project you are going to create two functions, one should be called chicken
and the other should be called farmer
. Both these functions should follow the following rules:
We kept the instructions open-ended on purpose. This is meant to have a bit of room for interpretation, there is no one perfect solution to this. We are very interested to see how you structure your solution.
Remember to test your work. Always.