https://github.com/andreax79/go-division
Column Division
https://github.com/andreax79/go-division
math
Last synced: 12 months ago
JSON representation
Column Division
- Host: GitHub
- URL: https://github.com/andreax79/go-division
- Owner: andreax79
- License: apache-2.0
- Created: 2023-01-24T13:33:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-30T08:11:19.000Z (over 3 years ago)
- Last Synced: 2025-06-01T10:45:21.560Z (about 1 year ago)
- Topics: math
- Language: Go
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-division
[](https://goreportcard.com/report/github.com/andreax79/go-division)
Column Division in Go
### Use Docker
```console
$ docker run -it --rm andreax79/division 3279 25
3279 | 25
25 |----
----| 131
77 |
75 |
---|
29 |
25 |
--|
4 |
3279 : 25 = 131 (4)
```
### Run from source
```console
$ go run division.go 1024 8
1024 | 8
8 |----
----| 128
22 |
16 |
---|
64 |
64 |
--|
0 |
1024 : 8 = 128 (0)
```