Skip to content
Permalink
774ae5be1f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
14 lines (9 sloc) 285 Bytes
import pytest
import sys
sys.path.append("./src/")
#You will need to write tests for your own functions, or change tests for ones you modify
from brute_advanced import maxPos
def test_maxPos():
assert maxPos([1,2,3])==2
assert maxPos([1])==0
assert maxPos([1,-10])==0