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"
func sum(numbers ...int) int {
var sum int = 0
var sum = 0
for _, number := range numbers {
sum += number

View File

@ -14,7 +14,7 @@ func averageCalc(numbers ...float64) float64 {
return sum / float64(len(numbers))
}
func averageHeadFirstVariadic() {
func main() {
arguments := os.Args[1:]
var numbers []float64
for _, argument := range arguments {
@ -22,5 +22,5 @@ func averageHeadFirstVariadic() {
Error(err)
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++
}
// 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.
case "enter", " ":
_, ok := m.selected[m.cursor]

View File

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

View File

@ -6,13 +6,13 @@ import (
)
func maximum(numbers ...float64) float64 {
max := math.Inf(-1)
maxNumber := math.Inf(-1)
for _, number := range numbers {
if number > max {
max = number
if number > maxNumber {
maxNumber = number
}
}
return max
return maxNumber
}
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) {
area := width * height
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 {
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
}
func printListersNeeded(amount float64) {
func printLitersNeeded(amount float64) {
fmt.Printf("%.2f liters needed\n", amount)
}
@ -23,21 +23,21 @@ func wallArea() {
if err != nil {
fmt.Println(err)
} else {
printListersNeeded(amount)
printLitersNeeded(amount)
}
total += amount
amount, err = paintNeeded(-5.2, 3.5)
if err != nil {
fmt.Println(err)
} else {
printListersNeeded(amount)
printLitersNeeded(amount)
}
total += amount
amount, err = paintNeeded(5.2, 5.0)
if err != nil {
fmt.Println(err)
} else {
printListersNeeded(amount)
printLitersNeeded(amount)
}
total += amount
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) {
fmt.Println("Closing file")
file.Close()
err := file.Close()
if err != nil {
log.Fatal(err)
}
}
func GetFloats(fileName string) ([]float64, error) {

View File

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