The four game elements that will give you a detailed description about the challenges that the player will face is option D: objective.
<h3>What goals does game development have?</h3>
To bring about creativity and originality in task completion and issue solving. to prepare pupils for group collaboration.
Note that giving the player a clear objective gives them something to aim for. Make sure the player can relate to this motivation.
Therefore, The most crucial component of a game can be its objectives, which determine how the game is won or lost, what the player is instructed to perform in-game, and what the player must do to gain optional <em>Achievements</em>.
Learn more about objective from
brainly.com/question/18516671
#SPJ1
Answer:
See Explaination
Explanation:
m=int(input("Please specify the number of elements in first list : "))
n=int(input("Please specify the number of elements in second list : "))
m1=1
list1=[]
n1=1
list2=[]
while m1<=m:
r1=int(input("input element {} of list1: ".format(m1)))
list1.append(r1)
m1+=1
while n1<=n:
list2.append(int(input("input element {} of list2: ".format(n1))))
n1+=1
def Intersection(list1,list2):
return set(list1).intersection(list2)
print("The intersection of two lists is {}".format(Intersection(list1,list2)))