Python Problems

Solve coding challenges and improve your Python skills

Total

5

Solved

0

In Progress

0

Success Rate

0%

Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.

Easy
Array

Have the function SimpleAdding(num) add up all the numbers from 1 to num.

Easy
Math

Have the function CheckNums(num1, num2) take both parameters being passed and return the string true if num2 is greater than num1, otherwise return the string false.

Easy
Logic

Have the function FirstFactorial(num) take the num parameter being passed and return the factorial of it.

Easy
Math

Have the function VowelCount(text) take the text parameter being passed and return the number of vowels the string contains (a, e, i, o, u).

Easy
String