A Chat-GPT prompt engineering contest for Google Developer Student Clubs, BITS Pilani Dubai Campus Students. Prompt engineering has recently grabbed the spotlight after the recent rise of LLMs (Large Language Models).
In this competition, participants face programming problems of varying difficulties, and are tasked with solving them by typing prompts into ChatGPT, and generating codes for the given problems.
Make sure to read the rules ↓
All the best!
Position | Prize Money | T-Shirt (Google Developer Student Club) |
---|---|---|
Winner | 100Dhs | ✅ |
Runner-Up | ❌ | ✅ |
# PROMPT
# Make a list [12, -3, 17, 0.5, -0.2], find it's sum and print it to console.
my_list = [12, -3, 17, 0.5, -0.2]
list_sum = sum(my_list)
print("The sum of the list is:", list_sum)