Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/guilledipa/hr1


https://github.com/guilledipa/hr1

Last synced: about 16 hours ago
JSON representation

Awesome Lists containing this project

README

        

# hr1

## Exercise details

The goal of this exercise is to get you familiar with how to solve problems on
the HackerRank website so that in the future when you complete Gophercises and
want to practice your Go skills, or your problem solving, data structures, and
algorithms, that you can do so in your free time.

We will be tackling two different problems on the site, neither of which are
incredibly difficult, but it should help you become familiar with the site while
also giving you some experience manipulating and working with strings in Go.

The first problem we will be looking at is named [camelcase], and in the problem
our goal is to find out how many words were used to create a camelcase string.

The second problem, [caesar cipher], involves encrypting a string using a fairly
basic cipher where you are changing the ascii value of each character.

To do this problem on your own you simply need to try to solve each problem and
submit a solution to Hacker Rank to verify that it passes all of the test cases
not just the sample ones you can run before submitting.

## Problems

- https://www.hackerrank.com/challenges/camelcase/problem
- https://www.hackerrank.com/challenges/caesar-cipher-1/problem

## Bonus

As a bonus exercises you can continue doing more HackerRank problems!

[caesar cipher]: https://www.hackerrank.com/challenges/caesar-cipher-1/problem
[camelcase]: https://www.hackerrank.com/challenges/camelcase/problem