Code 1:
"""
# TODO: Implement this method
from typing import List
def findElement(n: int, arr: List[int], x: int) -> int:
# NOTE: Please do not modify this function
def main():
n = int(input().strip())
arr = list(map(int, input().strip().split(' ')))
x = int(input().strip())
xIndex = findElement(n, arr, x)
print(xIndex)
if __name__=="__main__":
main()
"""
Code 2:
"""
def find_index(n,arr,x):
for i in range(n):
if arr[i]==x:
return i
return -1
"""
Consider you are a python devekoper.
Help me to integrate the Code 2 into Code 1.
Return the updated version of code.