These challenges are for training conducted by Gaza Sky Geeks .
If you are a beginner or do not know anything about the Ruby language, I encourage you to watch these quick lessons first.
Ruby for Beginners 2023 https://www.youtube.com/watch?v=Nzd_BASEE8Q&list=PLm8ctt9NhMNXP7FODFNrQhB6Dg-z_XqTd
To get a better idea of your current development skills, we'd like for you to complete a code challenge:
- Write your code in your favorite language
- Do not require any for-pay software.
- Copy the Github link into registration from:
- Fork the project into your own Github repo and make it publicly readable. If you have a github account, or if you create one; you can Fork this repo into your github account, then clone it to your local machine. You can then write your program in the cloned environment and add commits as you make progress.
- Commit directly into your repo.
- Send the repo link with registration from once you are done.
Challenge: A Fibonacci Sequence is created by adding two numbers to create the next number in the sequence. You then sum that number with the one preceding it to get the next number,, and so on. For example, if you have the sequence 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, then the next number in the sequence is 55.
Challenge: Create a program that takes a series of numbers and examines it to find the numbers missing to make it a perfect range. For example, the series of numbers could be [2, 1, 5, 4, 6, 9, 7, 8, 10]. This array is missing the number 3. The goal of this problem is to write code that finds which numbers are missing, and print them out.
- Write a simple input validation code.
