#challenge
💻 Oddish vs. Evenish | #easy
Create a function that determines whether a number is Oddish or Evenish. A number is Oddish if the sum of all of its digits is odd, and a number is Evenish if the sum of all of its digits is even. If a number is Oddish, return "Oddish". Otherwise, return "Evenish".
For example, OddishOrEvenish(121) should return "Evenish", since 1 + 2 + 1 = 4. OddishOrEvenish(41) should return "Oddish", since 4 + 1 = 5.
Examples:
#interview
💻 Oddish vs. Evenish | #easy
Create a function that determines whether a number is Oddish or Evenish. A number is Oddish if the sum of all of its digits is odd, and a number is Evenish if the sum of all of its digits is even. If a number is Oddish, return "Oddish". Otherwise, return "Evenish".
For example, OddishOrEvenish(121) should return "Evenish", since 1 + 2 + 1 = 4. OddishOrEvenish(41) should return "Oddish", since 4 + 1 = 5.
Examples:
OddishOrEvenish(43) ➞ "Oddish"🏆 Leave your solutions in the comments. The solution will be posted below in a couple of hours 👇
// 4 + 3 = 7
// 7 % 2 = 1
OddishOrEvenish(373) ➞ "Oddish"
// 3 + 7 + 3 = 13
// 13 % 2 = 1
OddishOrEvenish(4433) ➞ "Evenish"
// 4 + 4 + 3 + 3 = 14
// 14 % 2 = 0
#interview
#challenge
💻 Check for Anagrams | #easy
Create a function that takes two strings and returns either true or false depending on whether they're anagrams or not.
Examples:
#interview
💻 Check for Anagrams | #easy
Create a function that takes two strings and returns either true or false depending on whether they're anagrams or not.
Examples:
IsAnagram("cristian", "Cristina") ➞ true🏆 Leave your solutions in the comments. The solution will be posted below in a couple of hours 👇
IsAnagram("Dave Barry", "Ray Adverb") ➞ true
IsAnagram("Nope", "Note") ➞ false
#interview