added bubble_sort, binary_search, linear_search

This commit is contained in:
specCon18 2024-05-16 22:19:50 -04:00
commit f895efce44
13 changed files with 305 additions and 0 deletions

11
nix/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> { }, lib }:
pkgs.rustPlatform.buildRustPackage rec {
pname = "algos-in-rust";
version = "1.0.0";
cargoLock.lockFile = ../Cargo.lock;
src = pkgs.lib.cleanSource ../.;
buildInputs = [ ];
nativeBuildInputs = [ pkgs.pkg-config ];
doCheck = false;
}