Rohit
Rohit
Added a simple multiplication table problem, which is very beginner friendly since it requires them to think about the use of multiple for loops, range() function, and most importantly how...
Added a challenge from hackerrank (30 Days of Code) that is quite easy for anyone.
A challenge that requires searching for vowels within a string and return a list of indexes where any vowels were spotted during the search.
A sentence reversing function that also swaps the case of the letters within the sentence. It is a medium level difficulty problem for beginners.
An easy hackerrank challenge from 30 days of Code, which requires are good understanding of if-elif-else statements in Python.
An easy hackerrank challenge from 30 days of Code.
Added a question and solution for a program called lastoccurrence(). Bit more difficult for beginners, however, it is doable. This should not be much of a challenge for experienced programmers.
Added a question and solution for a program called FizzBuzz. Quite popular amongst the dev community and it's always fun to let beginners take a crack at it.
Provided another solution to 2.14 using the lower() method.