Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Weekly Challenges

Solve the challenge, share your solution and summit the ranks of our Community!

Also available in | Français | Português | Español | 日本語
IDEAS WANTED

Want to get involved? We're always looking for ideas and content for Weekly Challenges.

SUBMIT YOUR IDEA

Challenge #176: Math Class Drill

rohanwaghere
7 - Meteor

Here's my solution. Felt happy after solving this.

Have a great day!

Spoiler
176.png

 

dholle1958A
7 - Meteor
 
sgrabish1
8 - Asteroid

Thanks for practice exercise!

SimonSturges
7 - Meteor

Nice.... Interested to see if there is a quicker way. 

Spoiler
Screenshot_2019-11-13 20.14.55_YRLihq.png
LiD
8 - Asteroid
Spoiler
LiD_0-1574332869813.png
Borja_Leiva
7 - Meteor

My solution

Jonathan-Sherman
15 - Aurora
15 - Aurora

Challenge 176 is done!

 

Spoiler
challenge 176 JMS solution.PNG
kelsey_kincaid
12 - Quasar
Spoiler
kayers_0-1574700180964.png
echuong1
Alteryx Alumni (Retired)

fun challenge! 

SueDonim
8 - Asteroid

I thought this was going to be pretty hard, but it turned out to be very straight-forward....or maybe I'm getting the hang of this!

 

Spoiler
Process:
- Text input with digits 0 - 9
- Append Text input with itself
- Append that result with text input - generates all combination of digits from 0 to 999
- Generated number by taking first digit * 100 + 2nd digit * 10 + 3rd digit
- Filtered out digits less than 100 (per instructions)
- Sorted (asc) - just because
- Generated sum of cubes of each digit using POW function
- Filtered to find records where CubeDigit = Number
- Created exclusion list of the 3 numbers given
- Result is the desired response, 371

MySolution.PNG