Can you please correct the program indicate in the site? Because i try to run it in my python app but it's running. There's an error and when i try to run it i can't input and ouput a program.
Your task is to write a simple program which pretends to play tic-tac-toe with the user. To make it all easier for you, we've decided to simplify the game. Here are our assumptions.
Link:
https://helyaaqoubi.gitlab.io/coding/2020/05/12/tic-tac-toe-coding.html
I use the link below because i cant paste all the question. Thank you! Please look into it, i needed it already.
Write a program that takes a list of integers as a parameter and returns the sum of the list without using the built-in ‘sum()’ function.
Write a program that takes a list of integers as a parameter and returns the max element in the list without using the built-in ‘max()’ function.
Write a program to print the following pattern using for loop: (2 marks)
? ? ? ? ? ?
? ? ? ? ?
? ? ? ?
? ? ?
? ?
?
Write a program to print the following pattern using for loop:
? ? ? ? ? ?
? ? ? ? ?
? ? ? ?
? ? ?
? ?
?
Write a program to display all prime numbers within a range defined by the user as input
Take an even number between 10 and 50 from the user as input. Calculate the sum of all numbers from 1 till the input number. Make sure the necessary are checks are placed for while taking input.
Print the following pattern using for loops:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
Given the following header: vector split(string target, string delimiter); implement the function split() so that it returns a vector of the strings in target that are separated by the string delimiter. For example, split("do,re,me,fa,so,la,ti,do", ",") should return a vector with the strings "do", "re", "me", "fa", "so", "la", "ti" and "do". Test your function split() in a driver program that displays the strings in the vector after the target has been split.