Merge pull request #6 from Arsenic-ATG/main

Reformatted directory tree patch
pull/10/head^2
Ming Tsai 2021-01-14 09:11:31 -04:00 committed by GitHub
commit 0f0ed2b082
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 36 additions and 0 deletions

8
.gitignore vendored 100644
View File

@ -0,0 +1,8 @@
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

View File

@ -0,0 +1,12 @@
# Searching algorithms
### c-or-cpp
1. linear-search.cpp
2. binary-search.cpp
### python
1. linear-search.py
2. binary-search.py

11
sorting/README.md 100644
View File

@ -0,0 +1,11 @@
# Sorting algorithms
### c-or-cpp
1. bubble-sort.cpp
### python
1. bubble-sort.py

View File

@ -0,0 +1,5 @@
# String operations
### c-or-cpp
1. palindrome check (palindrome.c)