Skip to content

Files

Latest commit

May 5, 2023
8d56f8e · May 5, 2023

History

History
This branch is 1630 commits behind EndlessCheng/codeforces-go:master.

interactive_problem

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 17, 2022
May 5, 2023
May 5, 2023

Interactive Problem Template

To mock the IO part, implement this interface and use it both in main.go and main_test.go.

type interaction interface {
	readInitData() initData
	query(request) response
	printAnswer(answer)
}