Skip to content

ledongthuc/mathgen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7da504e · Jun 21, 2021

History

88 Commits
Jan 1, 2021
Jan 2, 2021
Feb 9, 2020
Dec 29, 2019
Dec 27, 2019
Feb 9, 2020
Jun 21, 2021
Jan 1, 2021
Jan 1, 2021
Dec 30, 2019
Jan 1, 2021
Jan 25, 2020
Jan 26, 2020
Jan 26, 2020
Dec 28, 2019
Jan 1, 2021
Jan 12, 2020

Repository files navigation

Math generator

Built with WeBuild Go Report Card GoDoc

As a dad, I frequently to play math quiz with my daughter. Bu I'm too lazy to frequently to create math questions. This' reason why I create this lib/api/web, that I can help me to generate questions. This repository will evolue frequently, I think, to support more topic.

Use as library

Install library:

  go get -u github.com/ledongthuc/mathgen

Usage:

  questionAndAnswers, _ := mathgen.AddIntegerN(3, 20)
  fmt.Println("Addends:", questionAndAnswers.Addends)
  fmt.Println("Sum:", questionAndAnswers.Sum)
  fmt.Println("Format:", questionAndAnswers.String())

More detail supported functions is cover at: https://godoc.org/github.com/ledongthuc/mathgen

Run demo application

Startup

Start with docker:

docker run -p 8080:8080 ledongthuc/mathgen-web:latest

Start from source code:

make clean; make test; make run;

API

Addition

POST http://localhost:8080/api/addition/generate

Request:

{
  "number_of_addends 2,
  "max_sum": 10
}

Response:

{
    "addends": [
        3,
        4
    ],
    "sum": 7,
    "question": "3 + 4 = ",
    "result": "3 + 4 = 7"
}

Subtraction

POST http://localhost:8080/api/subtraction/generate

Request:

{
  "max_minuend": 20,
  "number_of_subtrahends": 1
}

Response:

{
    "minuend": 9,
    "subtrahends": [
        5
    ],
    "difference": 4,
    "question": "9 - 5 = ",
    "result": "9 - 5 = 4"
}

Web

Local: http://localhost:8080

Free site: https://mathgen.thuc.space

demo