kevinyang372/code-eval

Failed to execute basic builtins in code submission testing

kevinyang372 opened this issue · 1 comments

When executing the following code:

def add(x, y):
  a = list([1,2,3])
  return round(x + y)

def multiply(x, y):
  return x * y

def subtract(x, y):
  return x - y

Running result returns name list is not defined

Fixed!