Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Added roman to integer conversion #172
Conversation
| return total | ||
| } | ||
|
|
||
| func main() { |
nomisrevol
Oct 1, 2020
Collaborator
Remove main function and create a new test file instead.
Remove main function and create a new test file instead.
Navid2zp
Oct 1, 2020
Author
Contributor
The main function is removed and test files created.
The main function is removed and test files created.
| name string | ||
| } | ||
|
|
||
| var romanToIntegerTests = []romanToIntegerConversionTest{ |
nomisrevol
Oct 1, 2020
Collaborator
Move the testcases inside of the test file. We do not need it to separated in a standalone file.
Move the testcases inside of the test file. We do not need it to separated in a standalone file.
Navid2zp
Oct 1, 2020
Author
Contributor
Should I rename the test file to roman_to_integer_test.go or you want all the tests in one file like the way it is now?
Should I rename the test file to roman_to_integer_test.go or you want all the tests in one file like the way it is now?
|
|
||
| //END TESTS | ||
|
|
||
| //BEGIN BENCHMARKS |
nomisrevol
Oct 1, 2020
Collaborator
No need to have benchmark for a single implementation, please remove all unnecessary like BEGIN TESTS or END TESTS also.
No need to have benchmark for a single implementation, please remove all unnecessary like BEGIN TESTS or END TESTS also.

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

Added roman to integer conversion and it's file link to DIRECTORY.md