Skip to content

Latest commit

 

History

History
198 lines (110 loc) · 6.52 KB

README.md

File metadata and controls

198 lines (110 loc) · 6.52 KB

In this Challenge, you are going to learn the basics of type assertions in Go and how you can use type assertions to retrieve the dynamic values of from interfaces

Difficulty: Easy
Type: Language


In this Challenge, you will create your first Go application and commit it up to Github!

Difficulty: Easy
Type: Language


In this Challenge, you will create your first Go application and commit it up to Github!

Difficulty: Medium
Type: Data Structures


In this challenge, we are going to implement a function that allows us to check and see if there are duplicates within a list in Go

Difficulty: Medium
Type: Data Structures


In this challenge, you will be implementing some of the core functionality of the Stack data structure in Go!

Difficulty: Hard
Type: Data Structures


In this challenge, you will be implementing some of the core functionality of the Queue data structure in Go!

Difficulty: Hard
Type: Data Structures


In this Challenge, you are going to find the cheapest and most expensive flights from a list in Go

Difficulty: Medium
Type: Data Structures


In this challenge, you are going to be building a function that takes in two string values and checks to see if they are permutations of each other!

Difficulty: Medium
Type: Data Structures


In this challenge, you will be implementing the basic functionality of a singly linked list in Go!

Difficulty: Hard
Type: Data Structures


In this challenge, you will be tasked with efficiently counting the frequencies of words in Go!

Difficulty: Easy
Type: Data Structures


In this challenge, you are going to be implementing a function that checks to see if a set is a sub-set.

Difficulty: Medium
Type: Data Structures


In thie challenge, you are tasked with checking to see if a number is an Armstrong number in Go!

Difficulty: Easy
Type: Math


In this challenge, you are tasked with finding the smallest possible difference between 2 int slices.

Difficulty: Medium
Type: Math


In this challenge, you are tasked with implementing a function that returns whether or not a year is a leap year.

Difficulty: Medium
Type: Math


In this challenge, you are tasked with implementing a function that takes in a string and then duplicates the characters twice within the string.

Difficulty: Easy
Type: Misc


In this challenge, we are going to be implementing a function that will return either "odd" or "even" depending on the number of factors of a number.

Difficulty: Easy
Type: Math


In this challenge, you are tasked with decoding this secret message and returning the unencoded string in Go!

Difficulty: Medium
Type: Beginner


In this challenge, you will be tasked with finding how many rotations an ordered slice has undergone.

Difficulty: Medium
Type: Beginner


In this Challenge, you are tasked with finding the difference between squares in Go!

Difficulty: Easy
Type: Math


In this Challenge, you are tasked with implementing a function that will correctly return the 'nth' triangular number in Go!

Difficulty: Easy
Type: Math


In this challenge, you are going to need to work with JSON strings and parse JSON in Go in order to retrieve the highest dividend stocks!

Difficulty: Medium
Type: Language


In this challenge, you will be tasked with implementing a function that returns the largest possible pandigital prime number.

Difficulty: Medium
Type: Math