add helper scripts

This commit is contained in:
David 2021-11-30 18:51:56 -05:00
parent 9dbd6773bb
commit c6b57d6e8a
3 changed files with 51 additions and 0 deletions

37
main.go.tmpl Normal file
View File

@ -0,0 +1,37 @@
package main
import (
"bufio"
"fmt"
"os"
"time"
)
func main() {
start := time.Now()
partOne()
duration := time.Since(start)
partTwo()
duration2 := time.Since(start)
fmt.Printf("p1: %s, p2: %s\n", duration, duration2-duration)
}
func partOne() {
f, _ := os.Open("input")
reader := bufio.NewReader(f)
scanner := bufio.NewScanner(reader)
for scanner.Scan() {
// line := scanner.Text()
}
}
func partTwo() {
f, _ := os.Open("input")
reader := bufio.NewReader(f)
scanner := bufio.NewScanner(reader)
for scanner.Scan() {
// line := scanner.Text()
}
}

7
new.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
if [ "${1}" != "" ]; then
mkdir -p ${1}
touch ${1}/{input,testinput}
cp -n main.go.tmpl ${1}/main.go
fi

7
run.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
if [ "${1}" != "" ]; then
cd ${1}
go run *.go
cd - > /dev/null
fi