Example #1
0
def exists():
    """dictionary.c, dictionary.h, and Makefile exist"""
    check50.exists("dictionary.c", "dictionary.h")
Example #2
0
def exists():
    """caesar.c exists."""
    check50.exists("caesar.c")
Example #3
0
def exists():
    """magic.c exists"""
    check50.exists("magic.c")
    check50.include("1.txt")
Example #4
0
def exists():
    """linear.c exists"""
    check50.exists("linear.c")
Example #5
0
def exists():
    """datatypes.c exists"""
    check50.exists("datatypes.c")
Example #6
0
def exists():
    """Credit.java exists"""
    check50.exists("Credit.java")
Example #7
0
def exists():
    """iowa.py exists"""
    check50.exists("iowa.py")
Example #8
0
def exists():
    """whodunit.c exists"""
    check50.exists("whodunit.c")
Example #9
0
def exists():
    """variables.c exists"""
    check50.exists("variables.c")
Example #10
0
def exists():
    """chpt3q2.c exists"""
    check50.exists("chpt3q2.c")
Example #11
0
def exists():
    """climate.ipynb exists."""
    check50.include("climate.data")
    check50.exists("climate.ipynb")
Example #12
0
def exists():
    """basics.c exists."""
    check50.exists("basics.c")
Example #13
0
def shell_exists():
    """shell.c exists"""
    check50.exists("shell.c")
    check50.include("shell_soln")
def exists():
    """cash.c exists"""
    check50.exists("cash.c")
Example #15
0
def exists():
    """vigenere.c exists."""
    check50.exists("vigenere.py")
Example #16
0
def exists():
    """Check if output.csv exists."""
    check50.exists("output.csv")
    check50.include("data/")
Example #17
0
def exists():
    """typecasting.c exists"""
    check50.exists("typecasting.c")
Example #18
0
def exists():
    """hello.py exists."""
    check50.exists("hello.py")
Example #19
0
def exists(): # the name of the check
    """File exists""" # this is what you will see when running check50
    check50.exists("hello.py") # the actual check
def exists():
    check50.exists("malloc3.c")
    with open("malloc3.c") as f:
        sources_buf = f.read()
    return sources_buf
Example #21
0
def exists():
    """kvadratas.cpp exists"""
    check50.exists("kvadratas.cpp")
Example #22
0
def exists():
    """cash_change.c exists"""
    check50.exists("cash_change.c")
Example #23
0
def exists():
    """File mirror.py exists"""
    check50.exists("mirror.py")
Example #24
0
def exists():
    """%s exists.""" % filename
    check50.exists(filename)
Example #25
0
def exists():
    check50.exists("inheritance.cpp")
    with open("inheritance.cpp") as f:
        sources_buf = f.read()
    return sources_buf
Example #26
0
def exists():
    """placeholders.c exists"""
    check50.exists("placeholders.c")
    check50.include("1.txt")
    check50.include("2.txt")
Example #27
0
def leaky_exists():
    """leaky.c exists"""
    check50.exists("leaky.c")
Example #28
0
def exists1():
    """foo.py exists"""
    check50.exists("foo.py")
Example #29
0
def exists():
    """mergesort.c exists"""
    check50.exists("mergesort.c")
Example #30
0
def exists():
    """Variables.c exists"""
    check50.exists("variables.c")
    check50.include("1.txt")