Skip to content

charlesncn/turing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

turing

def find_max(nums): max_num = float("-inf")

for num in nums:
    if num > max_num:
        max_num = num
return max_num

nums = (3,4,5,6,9,12)

print(find_max(nums))

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages