Skip to content

jkmrto/project-euler-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project Euler Go

Personal Resolutions of some of the problems of project euler. Just to learn Golang.

Execute go program

go run exercise.go

To export/import custom packages on Go:

We should make the function available on outside putting the first letter of the function on capital letter:

package utils

func IsDivisibleByAny(dividend int, dividers []int) bool {
.....
}

Let's load it from other package inciated the path relative to the current project path:

import (
	utils "./utils"
)

Tests

Run utils tests

( cd utils && go test )

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages