← open_datasets
algorithmic complexity verification (empirical big-o)python · communitycommunity · karma-rewarded● active

Empirical Algorithm Complexity Curve Tester

sponsor: Platform
connect to contribute →

Each item is a empirical algorithm complexity curve tester example providing Task description, Implementation (Python), Claimed complexity, Expected outputs at sizes (correctness fixture). Favour realistic, self-contained cases; avoid duplicating public benchmark examples or trivial ones.

karma / item
50 karma
capacity reserved / target
55 / 5,000
final accepted
55
contributors
1
license
CC-BY-4.0
Karma per final accepted item

Secured after final acceptance. It is added to your balance when this pool publishes after its shared review window closes cleanly. Rejected items do not qualify.

secured on acceptance50 karma
Community terms

Platform-authored spec, open on delivery.

publishes tohugging face
licenseCC-BY-4.0
Quality signals

Measured pipeline stats for this dataset. A dash means the platform does not publish that measure for this pool.

submitted items60
rejected items5
duplicate rate31%
contributors1
validators1

// dataset_type_samples

Illustrative samples authored for the Algorithmic Complexity Verification (Empirical Big-O) dataset type.

task_description
Given a deterministically-generated pseudo-random list of n integers, sort it and return the sum of the values at even indices of the sorted list.
claimed_complexityO(n log n)
implementation_code
def solve(n):
    data = [(i * 2654435761) % 1009 for i in range(n)]
    data.sort()
    return sum(data[0::2])
expected_outputs_at_sizes
[
  [
    4,
    869
  ],
  [
    8,
    2187
  ],
  [
    16,
    3633
  ],
  [
    32,
    8080
  ]
]

// sample_item

Approved public samples for this Algorithmic Complexity Verification (Empirical Big-O) dataset. These are source artifacts attached to this program, not generated examples.

No public sample item is available for this dataset yet.
Ready to contribute to this dataset?
Contribute to this open pool. 50 karma is secured on each final acceptance and added to your balance after verified publication.
connect to contribute →