Compare commits

...

3 Commits

Author SHA1 Message Date
ce125279ca GoLand Spelling fixes 2024-02-03 11:18:01 -05:00
f68fdf3d9b fixdom random errors and bugs 2024-02-03 11:15:06 -05:00
56fa94fce7 fixed error string grammar 2024-02-03 11:11:54 -05:00
8 changed files with 20 additions and 16 deletions

View File

@ -3,7 +3,7 @@ package main
import "fmt" import "fmt"
func sum(numbers ...int) int { func sum(numbers ...int) int {
var sum int = 0 var sum = 0
for _, number := range numbers { for _, number := range numbers {
sum += number sum += number

View File

@ -14,7 +14,7 @@ func averageCalc(numbers ...float64) float64 {
return sum / float64(len(numbers)) return sum / float64(len(numbers))
} }
func averageHeadFirstVariadic() { func main() {
arguments := os.Args[1:] arguments := os.Args[1:]
var numbers []float64 var numbers []float64
for _, argument := range arguments { for _, argument := range arguments {
@ -22,5 +22,5 @@ func averageHeadFirstVariadic() {
Error(err) Error(err)
numbers = append(numbers, number) numbers = append(numbers, number)
} }
fmt.Printf("Average: %0.2\n", averageCalc(numbers...)) fmt.Printf("Average: %0.2f\n", averageCalc(numbers...))
} }

View File

@ -51,7 +51,7 @@ func (m shoppingModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
m.cursor++ m.cursor++
} }
// The "enter" key and the spacebar (a literal space) toggle // The "enter" key and the space bar (a literal space) toggle
// the selected state for the item that the cursor is pointing at. // the selected state for the item that the cursor is pointing at.
case "enter", " ": case "enter", " ":
_, ok := m.selected[m.cursor] _, ok := m.selected[m.cursor]

View File

@ -48,6 +48,7 @@ func (m testModel) View() string {
} }
func terminalTest() { func terminalTest() {
//goland:noinspection SpellCheckingInspection,SpellCheckingInspection
items := []list.Item{ items := []list.Item{
item{title: "Raspberry Pis", desc: "I have em all over my house"}, item{title: "Raspberry Pis", desc: "I have em all over my house"},
item{title: "Nutella", desc: "It's good on toast"}, item{title: "Nutella", desc: "It's good on toast"},

View File

@ -6,13 +6,13 @@ import (
) )
func maximum(numbers ...float64) float64 { func maximum(numbers ...float64) float64 {
max := math.Inf(-1) maxNumber := math.Inf(-1)
for _, number := range numbers { for _, number := range numbers {
if number > max { if number > maxNumber {
max = number maxNumber = number
} }
} }
return max return maxNumber
} }
func inRange(min float64, max float64, numbers ...float64) []float64 { func inRange(min float64, max float64, numbers ...float64) []float64 {

View File

@ -5,15 +5,15 @@ import "fmt"
func paintNeeded(width float64, height float64) (paintNeededCalculated float64, anError error) { func paintNeeded(width float64, height float64) (paintNeededCalculated float64, anError error) {
area := width * height area := width * height
if width < 0.0 { if width < 0.0 {
return 0, fmt.Errorf("a width of %0.2f is invalid.", width) return 0, fmt.Errorf("a width of %0.2f is invalid", width)
} }
if height < 0.0 { if height < 0.0 {
return 0, fmt.Errorf("a height of %0.2f is invalid.", height) return 0, fmt.Errorf("a height of %0.2f is invalid", height)
} }
return area / 10.0, nil return area / 10.0, nil
} }
func printListersNeeded(amount float64) { func printLitersNeeded(amount float64) {
fmt.Printf("%.2f liters needed\n", amount) fmt.Printf("%.2f liters needed\n", amount)
} }
@ -23,21 +23,21 @@ func wallArea() {
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)
} else { } else {
printListersNeeded(amount) printLitersNeeded(amount)
} }
total += amount total += amount
amount, err = paintNeeded(-5.2, 3.5) amount, err = paintNeeded(-5.2, 3.5)
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)
} else { } else {
printListersNeeded(amount) printLitersNeeded(amount)
} }
total += amount total += amount
amount, err = paintNeeded(5.2, 5.0) amount, err = paintNeeded(5.2, 5.0)
if err != nil { if err != nil {
fmt.Println(err) fmt.Println(err)
} else { } else {
printListersNeeded(amount) printLitersNeeded(amount)
} }
total += amount total += amount
fmt.Printf("Total: %.2f liters\n", total) fmt.Printf("Total: %.2f liters\n", total)

View File

@ -15,7 +15,10 @@ func OpenFile(fileName string) (*os.File, error) {
func CloseFile(file *os.File) { func CloseFile(file *os.File) {
fmt.Println("Closing file") fmt.Println("Closing file")
file.Close() err := file.Close()
if err != nil {
log.Fatal(err)
}
} }
func GetFloats(fileName string) ([]float64, error) { func GetFloats(fileName string) ([]float64, error) {

View File

@ -93,5 +93,5 @@ Brian Martin
Amber Graham Amber Graham
Brian Martin Brian Martin
Amber Graham Amber Graham
Carloz Diaz Carlos Diaz
Silly name Silly name