https://github.com/siakhooi/codility-zirconium-2019
Codility Challenge: Zirconium 2019 (Medium)
https://github.com/siakhooi/codility-zirconium-2019
codility codility-challenges java junit5 maven
Last synced: 3 months ago
JSON representation
Codility Challenge: Zirconium 2019 (Medium)
- Host: GitHub
- URL: https://github.com/siakhooi/codility-zirconium-2019
- Owner: siakhooi
- Created: 2021-06-19T04:50:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-10-10T14:14:24.000Z (almost 5 years ago)
- Last Synced: 2025-08-24T11:29:07.766Z (11 months ago)
- Topics: codility, codility-challenges, java, junit5, maven
- Language: Java
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Codility Challenge: Zirconium 2019
## DreamTeam
- Difficulty: Medium
- Divide developers into two teams to maximize their total contribution.
-
-
## Versions
- Result
- `Good`: Correctness 100%, Performance 100%.
- `OK`: Correctness 100%, Performance <100%.
- `Fail`: Correctness <100%, Performance <100%.
- `Timeout`: Correctness <100%, Performance <100%, correctness caused by timeout.
- File naming convention
- Code `A`: `Zirconium2019A.java`
- etc
| File | Complexity | Description | Result | Report |
| ---- | ----------------------- | -------------- | --------- | ----------------------------------------------------------------------- |
| `A` | N/A | using `stream` | `Timeout` | [XH7NU2-M3X](https://app.codility.com/demo/results/trainingXH7NU2-M3X/) |
| `B` | `O(N*log(N))` or `O(N)` | using `for` | `Good` | [TMTBX4-X8H](https://app.codility.com/demo/results/trainingTMTBX4-X8H/) |
## Observations
- Apparently, `stream` is slow.