Quick actions

cmd+k|ctrl+k

Navigation

Languages

2818PythonGasesteMinim

Snippet info

Language

Python

Visibility

public

Author

mhcrnl

Created

2018-11-15T12:38:35Z

Updated

2018-11-15T12:38:42Z

print("Hello World!")

def gaseste_minim(numere):
    minim = numere[0]
    for x in numere :
        if x < minim:
            minim = x
            
    print(minim)
    
def main():
    gaseste_minim([2,3,44,56,2,1])
    
if __name__ == '__main__':
    main()
    
INFO