JEST'S LLC COMPETITION

JEST'S LLC COMPETITION

This week’s prompt:

Write a program that will take 2 strings (one of which will be a word, and the other will be a random assortment of characters), and output whether or not all of the letters of the word are present in the random string. Remember that you have to look out for both lower-case and upper-case letters. Make sure the program follows this format:

Input:

Word: Bear

String: ASDGASBER

Output:

True

Remember that you can use any programming language, and that you should aim to use the least amount of lines possible. Good luck!

Due: Friday of every week.

Previous Week Winning Solution!

def palindrome(input):

return input[::-1] == input

Congratulations to Raghav!

Submit Here!

Submit your code down below either attach a link to the code or copy paste down below! CHATGPT IS AGAINST THE RULES AND ALL CODE WILL BE CHECKED FOR AI WRITTEN CODE. Please participate in this competition with honor.