# Scrape LeetCode Easy Array Problems for Beginners

**Use case:** 

Gather a comprehensive list of all 'Easy' difficulty problems tagged with 'Array' from LeetCode. This data is invaluable for educators building curriculum or in

## Input

```json
{
  "mode": "problems",
  "difficulty": "EASY",
  "topic": "array",
  "skipPaidOnly": true,
  "maxItems": 200
}
```

## Output

```json
{
  "questionFrontendId": {
    "label": "Question frontend id"
  },
  "title": {
    "label": "Title"
  },
  "difficulty": {
    "label": "Difficulty"
  },
  "acceptanceRate": {
    "label": "Acceptance rate"
  },
  "topics": {
    "label": "Topics"
  },
  "problemUrl": {
    "label": "Problem url"
  }
}
```

## About this Actor

This example demonstrates how to use [LeetCode Scraper](https://apify.com/crawlerbros/leetcode-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/leetcode-scraper) to learn more, explore other use cases, and run it yourself.