You need to find the minimum integer in a Go slice. How would you do it? Solution This is the solution I wrote for Ardan Labs Training Kit: You can find the source code here: GoTraining … [Read more...] about GO: Find the Minimum Integer Value in a Go Slice
GO: Reverse a String
In this tutorial, we will learn how to reverse a string in Go. In this example, we will using a rune to reverse the string: … [Read more...] about GO: Reverse a String
Git: Rename a Branch
Every developer will face having to renaming a Git branch at some point. This short tutorial will cover renaming a local Git branch and then renaming a remote Git branch. Renaming a Git Branch Locally To rename the current branch that you have … [Read more...] about Git: Rename a Branch
GO: Convert Integer to String
Introduction In this short tutorial, we'll learn how to convert an integer to a string using Go. To complete this task, we will use the Strconv Package. Integer to String … [Read more...] about GO: Convert Integer to String
GO: Convert String to Integer
Introduction In this short tutorial, we'll learn how to convert a string to an integer using Go. To complete this task, we will use the Strconv Package. String to Integer … [Read more...] about GO: Convert String to Integer