I will admit…I have been having a tough time coming up with challenges lately. So, if you have any ideas please contact me! 🙂 This week’s challenge has been borrowed from Project Euler (Problem#22). Here is what the challenge is: Begin by sorting the names list into alphabetical order. Then working out the alphabetical value for each …
Category Archives: Challenges
C#3 Let’s capitalize on it
Here is a new challenge for you – capitalize the first letter of each word in a string. For example: q) f “I’m gonna make him an offer he can’t refuse” “I’m Gonna Make Him An Offer He Can’t Refuse” Post your answers in the comment section below and let me know if you have …
Challenge#2 Reverse words in a phrase
Sorry for the delay in coming up with a new challenge. It’s been a busy few weeks. Last challenge was about partial sort. This week’s challenge will be about reversing words in a phrase. It’s a common challenge and many of you have probably seen it already. Task: Given a string with some words, produce …
Challenge#1 – Partial sort
One of my colleagues recently introduced me to Project Euler. Project Euler is a great way for you to solve mathematical problems using your preferred language and then compare your solution with others. However, I noticed that most of the problems there were not practical for q. Many were designed to use loops which are …