Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions FEEDBACK.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# Feedback

1. Your team:
2. Name of each individual participating:
1. Your team: CodeBoys
2. Name of each individual participating:Joshua Peck, Zachary Lake
3. How many unit tests were you able to pass?
We did not complete test 11, 10 or 8.
8 was due to not being able to submit a null value for a method that returns a primitive value (int), when changed to Integer the test threw errors
10 passed all except for one and it was off by around .25 so I believe it may be a rounding error, but similarly to 8 when changed to Decimal the test threw errors
4. Document and describe any enhancements included to help the judges properly grade your submission.
- Example One
- Example Two
- Example Three
NA

5. Any feedback for the coding competition? Things you would like to see in future events?


This form can also be emailed to [[email protected]](mailto:[email protected]). Just make sure that you include a link to your GitHub pull requests.

Link to our Pull Request: https://github.com/StateFarmInsCodingCompetition/2023-StateFarm-CodingCompetition/pull/31

Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ public class Application {
public static void main(String[] args) {
SimpleDataTool sdt = new SimpleDataTool();

System.out.println(sdt.buildMapOfAgentsToTotalClaimCost());
System.out.println("working");
}
}
Loading