mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-21 21:11:57 +03:00
* perf: faster implementation of the TwoSum problem
* doc: fixed typos on comments
* updating DIRECTORY.md
* fix: comments on includes. Doxygen file. static test function
* fix: #898 revert the nodir_files check version prior 2c86fbb
* fix: revert 1.c changes
* Apply suggestions from code review
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
parent
779e2f073e
commit
b8e3c3833b
9
.github/workflows/awesome_workflow.yml
vendored
9
.github/workflows/awesome_workflow.yml
vendored
@ -136,13 +136,12 @@ jobs:
|
||||
print(f"{len(space_files)} files contain space or dash characters:")
|
||||
print("\n".join(space_files) + "\n")
|
||||
|
||||
nodir_files = [file for file in cpp_files if file.count(os.sep) != 1 and "project_euler" not in file and "data_structure" not in file]
|
||||
nodir_file_bad_files = len(nodir_files) - 1
|
||||
if nodir_file_bad_files:
|
||||
nodir_files = [file for file in cpp_files if file.count(os.sep) != 1 and "project_euler" not in file and "leetcode" not in file and "data_structure" not in file]
|
||||
if nodir_files:
|
||||
print(f"{len(nodir_files)} files are not in one and only one directory:")
|
||||
print("\n".join(nodir_files) + "\n")
|
||||
|
||||
bad_files = nodir_file_bad_files + len(upper_files + space_files)
|
||||
|
||||
bad_files = len(upper_files + space_files + nodir_files)
|
||||
if bad_files:
|
||||
sys.exit(bad_files)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user