Skip to content

WHYjun/advent-of-code-2023

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

advent-of-code-2023

AOC 2023 solution in Go

Puzzle Lists

Solution Template

package day

import (
	"strings"
)

func Part1(input string) int {
	lines := strings.Split(input, "\r\n")
	return len(lines)
}

func Part2(input string) int {
	lines := strings.Split(input, "\r\n")
	return len(lines)
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages