"Ruby developers are responsible for developing code to build products using the Ruby programming language. In an interview context, expect to be quizzed on your technical skills through different kinds of computing problems or brainteasers. The specific questions you are asked will depend on what type of programming position you are looking for. Try researching a specific discipline such as web development, application development, or system development."
↳
(1..100).select { |x| x%3 == 0 && x%9 != 0
↳
1) start from number = 3 Loop while(number <= 100) 2) display number 3) number = number+3, display number 4) number = number+6 Loop Less
↳
put those integers into an array, pick every third element, out of which discard every third element. Less
↳
I wrote failing unit tests to determine the API first and then kept writing code until the tests succeeded. Less
↳
Do they expect use of rspec, minitest or just simple assert methods for tdd?
↳
Use a trie
↳
6 times
↳
realizando los ejercicios solicitados