Skip to content

This repo will contain the solutions using Golang for some coding challenges

Notifications You must be signed in to change notification settings

geektimus/go-challenges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Golang Challenges

Build Status

This repo will contain the solutions using Golang for challenges found on:

  • Books
  • Hacker Rank
  • Codility
  • CodeFights
  • Others

Challenges

Others (Challenges proposed by Friends or Solved on hackatons)

Recursively reverse a string

Given a string, reverse the characters and return.

Appendix

Run the test for all the challenges

go test -v ./...

Run tests with coverage

go test -cover

Output the coverage result to a file

go test -coverprofile=coverage.out

View the test results

Console go tool cover -func=coverage.out

HTML go tool cover -html=coverage.out

About

This repo will contain the solutions using Golang for some coding challenges

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages