CtrlK
BlogDocsLog inGet started
Tessl Logo

tessl/pypi-airbyte-source-hubspot

Airbyte source connector for HubSpot that enables data synchronization from HubSpot's CRM and marketing platform to various destinations.

80

1.40x
Overview
Eval results
Files

task.mdevals/scenario-2/

Batch Number Processor

Build a simple utility that processes a list of numbers and increments each value.

Requirements

Create a module that takes a list of numbers and returns a new list with each number incremented. Your implementation should:

  • Accept a list of numeric values (integers or floats)
  • Return a new list with each value incremented by one
  • Handle empty lists appropriately
  • Process negative numbers correctly

Test Cases

  • Given the list [1, 2, 3], the result should be [2, 3, 4] @test
  • Given the list [-5, 0, 5], the result should be [-4, 1, 6] @test
  • Given an empty list [], the result should be [] @test

Implementation

@generates

API

def process_numbers(numbers):
    """
    Process a list of numbers by incrementing each value.

    Args:
        numbers: List of numeric values (int or float)

    Returns:
        List of incremented numeric values
    """
    pass

Dependencies { .dependencies }

sampleproject { .dependency }

Provides numeric increment functionality.

Install with Tessl CLI

npx tessl i tessl/pypi-airbyte-source-hubspot

tile.json