https://github.com/ddanilov/largest-remainder-method
https://github.com/ddanilov/largest-remainder-method
clojure code-coverage cpp largest-remainder-method
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ddanilov/largest-remainder-method
- Owner: ddanilov
- Created: 2024-04-01T10:25:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-21T08:39:11.000Z (over 1 year ago)
- Last Synced: 2025-01-19T13:25:38.619Z (over 1 year ago)
- Topics: clojure, code-coverage, cpp, largest-remainder-method
- Language: C++
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Intro
This project demonstrates implementation of a simple but not too trivial problem
in different programming languages. The problem at hand is distribution with
rest by [largest remainder method](https://en.wikipedia.org/wiki/Largest_remainder_method).
The goal is to implement a command line program that
* reads input data from a file,
* does the distribution calculation,
* prints the results.
Each implementation will contain
* unit tests for the distribution calculation,
* instructions how to get the corresponding code coverage report,
* continuous integration workflows for testing on some source code hosting
platforms.