diff --git a/Programming In General.tex b/Programming In General.tex index f2416b7..f101bb9 100644 --- a/Programming In General.tex +++ b/Programming In General.tex @@ -15,18 +15,15 @@ \chapter{Introduction} \input{"./1 - Introduction/Introduction"} -\section{Who This Book Is For} -\input{"./1 - Introduction/1.0 - Who This Book Is For"} - -\section{Code Examples} -\input{"./1 - Introduction/1.1 - Code Examples"} - \chapter{Functional Programming} \input{"./2 - Functional Programming/Functional Programming"} \chapter{Object Oriented Programming} +\input{"./3 - Object Oriented Programming/Object Oriented Programming"} \chapter{Data Structures} +\input{"./4 - Data Structures/Data Structures"} \chapter{Algorithms} +\input{"./5 - Algorithms/Algorithms"} \end{document} diff --git a/build b/build index 80be94e..77cb630 100755 --- a/build +++ b/build @@ -12,7 +12,7 @@ header.close(); dirs = [x[0] for x in os.walk('.')][1:] -for d in dirs: +for d in filter(lambda d: not re.search('.git',d),dirs): chapter = re.sub('\d+\s-\s', '', d[2:]) book.write('\r\n\chapter{' + chapter + '}\r\n') if os.path.exists(d + '/' + chapter + '.tex'):