Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

algorithm-practice算法练习

Agent Skill

algorithm-practice 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,203

周安装

90

GitHub Stars

公开资料未说明

下载量

706
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:algorithm-practice(算法练习)
来源仓库:https://github.com/kadijin/algorithm-practice
安装命令:
openclaw skills install algorithm-practice
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install algorithm-practice

简介

algorithm-practice 提供交互式算法练习,包含 100+ 难度分级的问题集。

  • 适合在 OpenClaw 中需要刷题训练、代码练习或算法能力提升时使用。
  • 支持 Java 和 Python 代码模板生成,可立即运行测试用例验证结果。
  • 安装前请确认权限范围和维护状态,注意可能涉及本地代码执行环境。
  • 建议结合原始 README 了解问题分类、难度级别和提交方式。

SKILL.md

name
algo-practice
description
🎯 Interactive algorithm practice with 100+ problems across Easy/Medium/Hard difficulties. Generates ready-to-run code templates in Java & Python with built-in test cases. Perfect for coding interview preparation and algorithm learning. Covers arrays, strings, linked lists, trees, dynamic programming, graphs, and more.

🎯 Algo Practice - Interactive Algorithm Training

Transform your coding interview preparation with curated algorithm problems, auto-generated code templates, and instant test feedback.

✨ Features

  • 📚 100+ Algorithm Problems - Carefully selected from classic interview questions
  • 🎚️ Three Difficulty Levels - Easy, Medium, Hard with progressive learning path
  • 💻 Dual Language Support - Java & Python templates with identical test cases
  • ✅ Built-in Testing - 5-8 test cases per problem including edge cases
  • 📊 Progress Tracking - Auto-maintained history to avoid duplicates
  • 🎓 Learning Oriented - Hints provided without giving away solutions
  • 🚀 Ready to Run - Complete code templates with main entry points

🚀 Quick Start

Basic Usage

User: 出算法题 / 刷题 / 练算法 / algo practice / 来一道题

The skill will:

  1. Ask for your preferred difficulty level
  2. Generate a unique problem you haven't seen
  3. Create ready-to-code templates in both Java and Python
  4. Track your progress automatically

Example Interaction

User: 刷题
AI: [Asks for difficulty preference]
User: Medium
AI: [Generates problem with templates]

📋 Workflow

Step 1: Check Problem History

Read algo_history.md from the workspace root to track previously assigned problems and ensure no duplicates.

# Algorithm Practice History

| # | Problem Name | Difficulty | Category | Date |
|---|-------------|------------|----------|------|
| 1 | TwoSum | Easy | Array, Hash Table | 2026-03-27 |

Step 2: Ask Difficulty Preference

Use the AskUserQuestion tool:

Question: "Which difficulty level would you like?"

Options:

  • 🟢 Easy - Basic data structures & simple logic, perfect for warm-up
  • 🟡 Medium - Requires algorithmic thinking, covers common patterns
  • 🔴 Hard - Advanced algorithms, optimization, complex data structures

Step 3: Generate Problem

Create an original algorithm problem with:

Problem Structure

  • Title: PascalCase format (e.g., LongestSubstring, MergeIntervals)
  • Difficulty Badge: 🟢 Easy / 🟡 Medium / 🔴 Hard
  • Description: Clear Chinese explanation of input/output requirements
  • Examples: Minimum 2 examples with input/output pairs
  • Constraints: Data ranges, time/space complexity requirements
  • Hints: Direction hints without revealing the solution

Problem Categories (Rotate through these)

Arrays, Strings, Linked Lists, Trees, Graphs, Dynamic Programming, Greedy, Backtracking, Sorting, Searching, Stack/Queue, Hash Tables, Two Pointers, Sliding Window, Bit Manipulation, BFS/DFS, Divide & Conquer

Step 4: Create Code Templates

Java Template: java/<ProblemName>.java

import java.util.*;

public class <ProblemName> {

    /**
     * TODO: Implement your algorithm here
     *
     * <Brief description of function>
     *
     * @param <parameter description>
     * @return <return value description>
     */
    public <ReturnType> <methodName>(<Parameters>) {
        // Write your code here
        return <default value>;
    }

    public static void main(String[] args) {
        <ProblemName> solution = new <ProblemName>();
        int passed = 0;
        int total = 0;

        // Test Case 1: Normal case
        total++;
        <Type> result1 = solution.<methodName>(<input1>);
        if (<check if result1 equals expected1>) {
            System.out.println("Test Case " + total + ": ✅ Pass");
            passed++;
        } else {
            System.out.println("Test Case " + total + ": ❌ Fail");
            System.out.println("  Input: <input description>");
            System.out.println("  Expected: <expected output>");
            System.out.println("  Actual: " + result1);
        }

        // Test Case 2-N: Include edge cases (minimum 5 total)
        // Must cover: normal cases, boundary cases, special cases

        System.out.println("\
Results: " + passed + "/" + total + " Passed");
        if (passed == total) {
            System.out.println("🎉 All tests passed!");
        } else {
            System.out.println("💪 Keep trying! Review the failed cases above.");
        }
    }
}

Python Template: python/<problem_name>.py

from typing import List, Optional


class Solution:
    def <method_name>(self, <parameters>) -> <return_type>:
        """
        TODO: Implement your algorithm here

        <Brief description of function>

        Args:
            <parameter description>

        Returns:
            <return value description>
        """
        # Write your code here
        pass


def main():
    solution = Solution()
    passed = 0
    total = 0

    # Test Case 1: Normal case
    total += 1
    result1 = solution.<method_name>(<input1>)
    if result1 == <expected1>:
        print(f"Test Case {total}: ✅ Pass")
        passed += 1
    else:
        print(f"Test Case {total}: ❌ Fail")
        print(f"  Input: <input description>")
        print(f"  Expected: <expected output>")
        print(f"  Actual: {result1}")

    # Test Case 2-N: Include edge cases (minimum 5 total)
    # Must cover: normal cases, boundary cases, special cases

    print(f"\
Results: {passed}/{total} Passed")
    if passed == total:
        print("🎉 All tests passed!")
    else:
        print("💪 Keep trying! Review the failed cases above.")


if __name__ == "__main__":
    main()

Test Case Requirements

  • Minimum 5 test cases per problem
  • Must include:

- Normal/typical cases - Edge cases (empty input, single element, maximum values) - Special cases (negative numbers, duplicates, etc.)

  • Consistency: Java and Python test cases must match
  • Proper comparison: Use Arrays.equals() for Java arrays, == for Python lists

Step 5: Update Progress Tracking

Append the problem to algo_history.md in workspace root:

# Algorithm Practice History

| # | Problem Name | Difficulty | Category | Date |
|---|-------------|------------|----------|------|
| 1 | TwoSum | Easy | Array, Hash Table | 2026-03-27 |
| 2 | MergeIntervals | Medium | Array, Sorting | 2026-03-27 |

Auto-increment the sequence number and use current date.

Step 6: Present Problem to User

Display the complete problem with:

  1. 📝 Problem Title & Difficulty Badge
  2. 📖 Problem Description (clear Chinese explanation)
  3. 💡 Examples (input/output pairs)
  4. ⚙️ Constraints (data ranges, complexity requirements)
  5. 🎯 Hints (direction without solution)
  6. 📁 File Locations:

- Java: java/<ProblemName>.java - Python: python/<problem_name>.py

  1. 🚀 Next Steps: "Implement your solution and run the file to test!"

💡 Pro Tips for Users

How to Use Effectively

  1. Start Easy - Build confidence with fundamentals
  2. Think First - Try to solve before looking at hints
  3. Test Thoroughly - Run both Java and Python versions
  4. Track Progress - Check algo_history.md for your journey
  5. Practice Regularly - Consistency beats intensity

Running Your Solutions

# Java
cd java
javac <ProblemName>.java && java <ProblemName>

# Python
python python/<problem_name>.py

Common Workflow

  1. Read problem carefully
  2. Think about approach (don't code immediately!)
  3. Write solution in the TODO section
  4. Run tests to verify
  5. Debug failed cases
  6. Optimize if needed
  7. Move to next problem

🎯 Problem Quality Standards

  • Interview-Relevant: Based on real coding interview questions
  • Well-Tested: 5-8 comprehensive test cases
  • Progressive Difficulty: Clear learning path
  • No Duplicates: Tracked via history file
  • Bilingual: Java + Python with consistent logic
  • Production-Ready: Ready to compile and run

🛠️ Technical Requirements

  • Method signatures must be clear and type-safe
  • Java filename MUST match public class name
  • Python filename uses snake_case convention
  • Problem titles use PascalCase (e.g., ValidParentheses)
  • NEVER include solutions or implementation hints in code files
  • Test case expected outputs MUST be correct
  • Create java/ and python/ directories if they don't exist

🌟 Target Audience

  • 👨‍💻 Job seekers preparing for coding interviews
  • 🎓 Computer science students learning algorithms
  • 🔄 Developers wanting to practice problem-solving
  • 🌱 Beginners starting their algorithm journey
  • 🏆 Advanced programmers tackling hard problems

📊 Success Metrics

After using this skill, users should:

  • Have working code templates ready to implement
  • Understand the problem clearly with examples
  • Know the constraints and edge cases
  • Feel motivated to solve and test their solution
  • Track their progress over time

💡 Tip: This skill is perfect for daily algorithm practice. Try solving 1-2 problems per day to build strong problem-solving skills!

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.48%
按下载量换算589

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills