Free Trial

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 #370: Buzz Buzz

Rana_Kareem
9 - Comet
Spoiler
Challenge 370.png

TobiasFitschen
8 - Asteroid
Spoiler
Challenge_370.png

gawa
16 - Nebula
16 - Nebula

Done

Anmol97
8 - Asteroid

Here's my solution

Dani_Lin
8 - Asteroid

solved

DanielG
12 - Quasar

Solved

Desmond
8 - Asteroid

My solution

jdbaldwin
7 - Meteor

Non-Alteryx solution using Python just to illustrate another means of solving the problem. File with word list is passed on the command line as a parameter to this script:

 

#!/usr/bin/python3

import sys

PANGRAM_LEN = 7

f = open( sys.argv[1], 'r' )
for w in f:
    w = w.rstrip()
    letters_set = set( w )
    if len(letters_set) != PANGRAM_LEN:
        continue

    letter_list = list(letters_set)
    letters_str = ''.join(sorted(letter_list))

    points = len(w) + PANGRAM_LEN   # assuming the pangram bonus goes
                                    # with the number of letters available

    print( '{},{},{}'.format( w, letters_str, points ) )

 

jd

Dill20122
5 - Atom

Here is my solution

Dill20122
5 - Atom

Here is my Solution