17 lines
988 B
Markdown
17 lines
988 B
Markdown
|
|
# This project is a toy project for training and quality assurance purposes
|
||
|
|
|
||
|
|
# Task 2
|
||
|
|
|
||
|
|
- Starting from the existing java task 1 as starting point, add following functionality
|
||
|
|
- Create new Order API where user can call to submit a full order like the ui but pay and make order through API only
|
||
|
|
- Owner can upload an excel file, PDF, CSV file of order information on a page. You need to process that file and create orders in the system.For PDF file, assume it looks the same as CSV file. Make sure you use proper design patterns to make it adaptable to new file formats
|
||
|
|
- Read the following post:
|
||
|
|
|
||
|
|
https://www.baeldung.com/java-genetic-algorithm
|
||
|
|
|
||
|
|
https://gist.github.com/Vini2/bd22b36ddc69c5327097921f5118b709
|
||
|
|
|
||
|
|
https://towardsdatascience.com/introduction-to-genetic-algorithms-including-example-code-e396e98d8bf3
|
||
|
|
|
||
|
|
- Use genetic algorithm on the dataset https://www.kaggle.com/datasets/uciml/breast-cancer-wisconsin-data . The fitness function will be if it can detect breast cancer or not
|