Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1022 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 1022 Bytes

Refds Algorithm

CI

This Swift Package Manager repository contains a collection of commonly used algorithms and data structures implemented in Swift. Whether you're a beginner learning algorithms or an experienced developer looking for ready-to-use implementations, this package aims to provide a comprehensive set of tools to enhance your projects.

Installation

Add this project to your Package.swift file.

import PackageDescription

let package = Package(
    dependencies: [
        .package(url: "https://github.com/rafaelesantos/refds-algorithm.git", branch: "main")
    ],
    targets: [
        .target(
            name: "YourProject",
            dependencies: [
                .product(
                    name: "RefdsAlgorithm",
                    package: "refds-algorithm"),
            ]),
    ]
)