Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guilledipa/hr1
https://github.com/guilledipa/hr1
Last synced: about 16 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/guilledipa/hr1
- Owner: guilledipa
- Created: 2024-04-16T08:41:15.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-18T09:56:29.000Z (9 months ago)
- Last Synced: 2024-04-18T11:41:19.416Z (9 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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