Skip to content

mihai-vlc/adventofcode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of code 2022/2023 solutions in golang

To execute the code

cd <day number>
go run main.go

Debug console filter

!start,!type,!process,!detaching,!dlv,!DAP
var a = " 79 "

var n, err = strconv.Atoi(strings.Trim(a, " "))

if err != nil {
	fmt.Println(err)
}
fmt.Println(n)
fmt.Println(n/7)
fmt.Println("A =", int('A'))
fmt.Println("a =", int('a'))
fmt.Println("E =", int('E'))
fmt.Println("96 =", string(rune(96)))
79
11
A = 65
a = 97
E = 69
96 = 96

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages