Initial commit

This commit is contained in:
Inanc Gumus
2018-10-13 23:30:21 +03:00
commit cde4e6632c
567 changed files with 17896 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
// ---------------------------------------------------------
// EXERCISE: First Turn Winner
//
// If the player wins on the first turn, then display
// a special bonus message.
//
// RESTRICTION
// The first picked random number by the computer should
// match the player's guess.
//
// EXAMPLE SCENARIO
// 1. The player guesses 6
// 2. The computer picks a random number and it happens
// to be 6
// 3. Terminate the game and print the bonus message
// ---------------------------------------------------------
func main() {
}

View File

@@ -0,0 +1,66 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import (
"fmt"
"math/rand"
"os"
"strconv"
"time"
)
const (
maxTurns = 5 // less is more difficult
usage = `Welcome to the Lucky Number Game!
The program will pick %d random numbers.
Your mission is to guess one of those numbers.
The greater your number is, harder it gets.
Wanna play?
`
)
func main() {
rand.Seed(time.Now().UnixNano())
args := os.Args[1:]
if len(args) != 1 {
fmt.Printf(usage, maxTurns)
return
}
guess, err := strconv.Atoi(args[0])
if err != nil {
fmt.Println("Not a number.")
return
}
if guess < 0 {
fmt.Println("Please pick a positive number.")
return
}
for turn := 1; turn <= maxTurns; turn++ {
n := rand.Intn(guess + 1)
if n == guess {
if turn == 1 {
fmt.Println("🥇 FIRST TIME WINNER!!!")
} else {
fmt.Println("🎉 YOU WON!")
}
return
}
}
fmt.Println("☠️ YOU LOST... Try again?")
}

View File

@@ -0,0 +1,37 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
// ---------------------------------------------------------
// EXERCISE: Random Messages
//
// Display a few different won and lost messages "randomly".
//
// HINTS
// 1. You can use a switch statement to do that.
// 2. Set its condition to the random number generator.
// 3. I would use a short switch.
//
// EXAMPLES
// Player wins: then randomly printone of these:
//
// go run main.go 5
// YOU WON
// go run main.go 5
// YOU'RE AWESOME
//
// Player loses: then randomly printone of these:
//
// go run main.go 5
// LOSER!
// go run main.go 5
// YOU LOST. TRY AGAIN?
// ---------------------------------------------------------
func main() {
}

View File

@@ -0,0 +1,77 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import (
"fmt"
"math/rand"
"os"
"strconv"
"time"
)
const (
maxTurns = 5 // less is more difficult
usage = `Welcome to the Lucky Number Game!
The program will pick %d random numbers.
Your mission is to guess one of those numbers.
The greater your number is, harder it gets.
Wanna play?
`
)
func main() {
rand.Seed(time.Now().UnixNano())
args := os.Args[1:]
if len(args) != 1 {
fmt.Printf(usage, maxTurns)
return
}
guess, err := strconv.Atoi(args[0])
if err != nil {
fmt.Println("Not a number.")
return
}
if guess < 0 {
fmt.Println("Please pick a positive number.")
return
}
for turn := 1; turn <= maxTurns; turn++ {
n := rand.Intn(guess + 1)
if n == guess {
switch rand.Intn(3) {
case 0:
fmt.Println("🎉 YOU WIN!")
case 1:
fmt.Println("🎉 YOU'RE AWESOME!")
case 2:
fmt.Println("🎉 PERFECT!")
}
return
}
}
msg := "%s Try again?\n"
switch rand.Intn(2) {
case 0:
fmt.Printf(msg, "☠️ YOU LOST...")
case 1:
fmt.Printf(msg, "☠️ JUST A BAD LUCK...")
}
}

View File

@@ -0,0 +1,25 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
// ---------------------------------------------------------
// EXERCISE: Double Guesses
//
// Let the player guess two numbers instead of one.
//
// HINT:
// Generate random numbers using the greatest number
// among the guessed numbers.
//
// EXAMPLES
// go run main.go 5 6
// Player wins if the random number is either 5 or 6.
// ---------------------------------------------------------
func main() {
}

View File

@@ -0,0 +1,76 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import (
"fmt"
"math/rand"
"os"
"strconv"
"time"
)
const (
maxTurns = 5 // less is more difficult
usage = `Welcome to the Lucky Number Game!
The program will pick %d random numbers.
Your mission is to guess one of those numbers.
The greater your number is, harder it gets.
Wanna play?
`
)
func main() {
rand.Seed(time.Now().UnixNano())
args := os.Args[1:]
if len(args) < 1 {
fmt.Printf(usage, maxTurns)
return
}
guess, err := strconv.Atoi(args[0])
if err != nil {
fmt.Println("Not a number.")
return
}
var guess2 int
if len(args) == 2 {
guess2, err = strconv.Atoi(args[1])
if err != nil {
fmt.Println("Not a number.")
return
}
}
if guess < 0 || guess2 < 0 {
fmt.Println("Please pick positive numbers.")
return
}
min := guess
if guess < guess2 {
min = guess2
}
for turn := 1; turn <= maxTurns; turn++ {
n := rand.Intn(min + 1)
if n == guess || n == guess2 {
fmt.Println("🎉 YOU WIN!")
return
}
}
fmt.Println("☠️ YOU LOST... Try again?")
}

View File

@@ -0,0 +1,29 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
// ---------------------------------------------------------
// EXERCISE: Verbose Mode
//
// When the player runs the game like this:
//
// go run main.go -v 4
//
// Display each generated random number:
// 1 3 4 🎉 YOU WIN!
//
// In this example, computer picks 1, 3, and 4. And the
// player wins.
//
// HINT
// You need to get and interpret the command-line arguments.
// ---------------------------------------------------------
func main() {
}

View File

@@ -0,0 +1,78 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import (
"fmt"
"math/rand"
"os"
"strconv"
"time"
)
const (
maxTurns = 5 // less is more difficult
usage = `Welcome to the Lucky Number Game!
The program will pick %d random numbers.
Your mission is to guess one of those numbers.
The greater your number is, harder it gets.
Wanna play?
(Provide -v flag to see the picked numbers.)
`
)
func main() {
rand.Seed(time.Now().UnixNano())
args := os.Args[1:]
if len(args) < 1 {
fmt.Printf(usage, maxTurns)
return
}
var verbose bool
if args[0] == "-v" {
verbose = true
}
guess, err := strconv.Atoi(args[len(args)-1])
if err != nil {
fmt.Println("Not a number.")
return
}
if guess < 0 {
fmt.Println("Please pick a positive number.")
return
}
for turn := 1; turn <= maxTurns; turn++ {
n := rand.Intn(guess + 1)
if verbose {
fmt.Printf("%d ", n)
}
if n == guess {
if turn == 1 {
fmt.Println("🥇 FIRST TIME WINNER!!!")
} else {
fmt.Println("🎉 YOU WON!")
}
return
}
}
fmt.Println("☠️ YOU LOST... Try again?")
}

View File

@@ -0,0 +1,48 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
// ---------------------------------------------------------
// EXERCISE: Enough Picks
//
// If the player's guess number is below 10;
// then make sure that the computer generates a random
// number between 0 and 10.
//
// However, if the guess number is above 10; then the
// computer should generate the numbers
// between 0 and the guess number.
//
// WHY?
// This way the game will be harder.
//
// Because, in the current version of the game, if
// the player's guess number is for example 3; then the
// computer picks a random number between 0 and 3.
//
// So, currently a player can easily win the game.
//
// EXAMPLE
// Suppose that the player runs the game like this:
// go run main.go 9
//
// Or like this:
// go run main.go 2
//
// Then the computer should pick a random number
// between 0-10.
//
// Or, if the player runs it like this:
// go run main.go 15
//
// Then the computer should pick a random number
// between 0-15.
// ---------------------------------------------------------
func main() {
}

View File

@@ -0,0 +1,68 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import (
"fmt"
"math/rand"
"os"
"strconv"
"time"
)
const (
maxTurns = 5 // less is more difficult
usage = `Welcome to the Lucky Number Game!
The program will pick %d random numbers.
Your mission is to guess one of those numbers.
The greater your number is, harder it gets.
Wanna play?
`
)
func main() {
rand.Seed(time.Now().UnixNano())
args := os.Args[1:]
if len(args) < 1 {
fmt.Printf(usage, maxTurns)
return
}
guess, err := strconv.Atoi(args[0])
if err != nil {
fmt.Println("Not a number.")
return
}
if guess < 0 {
fmt.Println("Please pick a positive number.")
return
}
min := 10
if guess > min {
min = guess
}
for turn := 1; turn <= maxTurns; turn++ {
n := rand.Intn(min + 1)
fmt.Println(n)
if n == guess {
fmt.Println("🎉 YOU WIN!")
return
}
}
fmt.Println("☠️ YOU LOST... Try again?")
}

View File

@@ -0,0 +1,51 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
// ---------------------------------------------------------
// EXERCISE: Dynamic Difficulty
//
// Current game picks only 5 numbers (5 turns).
//
// Make sure that the game adjust its own difficulty
// depending on the guess number.
//
// RESTRICTION
// Do not make the game to easy. Only adjust the
// difficulty if the guess is above 10.
//
// EXPECTED OUTPUT
// Suppose that the player runs the game like this:
// go run main.go 5
//
// Then the computer should pick 5 random numbers.
//
// Or, if the player runs it like this:
// go run main.go 25
//
// Then the computer may pick 11 random numbers
// instead.
//
// Or, if the player runs it like this:
// go run main.go 100
//
// Then the computer may pick 30 random numbers
// instead.
//
// As you can see, greater guess number causes the
// game to increase the game turns, which in turn
// adjust the game's difficulty dynamically.
//
// Because, greater guess number makes it harder to win.
// But, this way, game's difficulty will be dynamic.
// It will adjust its own difficulty depending on the
// guess number.
// ---------------------------------------------------------
func main() {
}

View File

@@ -0,0 +1,62 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
import (
"fmt"
"math/rand"
"os"
"strconv"
"time"
)
const (
maxTurns = 5 // less is more difficult
usage = `Welcome to the Lucky Number Game!
The program will pick %d random numbers.
Your mission is to guess one of those numbers.
The greater your number is, harder it gets.
Wanna play?
`
)
func main() {
rand.Seed(time.Now().UnixNano())
args := os.Args[1:]
if len(args) != 1 {
fmt.Printf(usage, maxTurns)
return
}
guess, err := strconv.Atoi(args[0])
if err != nil {
fmt.Println("Not a number.")
return
}
if guess < 0 {
fmt.Println("Please pick a positive number.")
return
}
for turn := (maxTurns + guess/4); turn > 0; turn-- {
n := rand.Intn(guess + 1)
if n == guess {
fmt.Println("🎉 YOU WIN!")
return
}
}
fmt.Println("☠️ YOU LOST... Try again?")
}