dsa-practice/libs/chapter1/chapter1.hpp

7 lines
159 B
C++

#pragma once
#include <stdlib.h>
bool IsUnique(const char* s, int len);
bool CheckPermutation(const char* s1, const char* s2, size_t s1_len, size_t s2_len);