Skip to content

Commit 9cf8884

Browse files
committed
Fix lists and links
1 parent edd95fd commit 9cf8884

File tree

3 files changed

+9
-33
lines changed

3 files changed

+9
-33
lines changed

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
anonymous functions and lambdas, pure functions and side effects
1313
4. Superposition and
1414
[Composition](https://github.com/HowProgrammingWorks/Composition),
15-
[Partial application](https://github.com/HowProgrammingWorks/PartialApplication),
15+
[partial application](https://github.com/HowProgrammingWorks/PartialApplication),
1616
currying and [wrapping](https://github.com/HowProgrammingWorks/Wrapper) functions
1717
5. [Higher order functions](https://github.com/HowProgrammingWorks/HigherOrderFunction)
1818
including callbacks and [closures](https://github.com/HowProgrammingWorks/Closure)
@@ -34,9 +34,6 @@
3434
1. [Linked lists](https://github.com/HowProgrammingWorks/LinkedList): singly, doubly, circular
3535
2. [Trees](https://github.com/HowProgrammingWorks/TreeNode): classification, implementation, traversion
3636
3. Graphs including [directed](https://github.com/HowProgrammingWorks/DirectedGraph) graphs
37-
<!--
38-
https://github.com/HowProgrammingWorks/Collections
39-
-->
4037

4138
## Files, streams and buffers
4239

@@ -47,19 +44,14 @@ https://github.com/HowProgrammingWorks/Collections
4744
## Advanced Concepts
4845

4946
1. [Functors](https://github.com/HowProgrammingWorks/Functor), applicative functors and monads
50-
2 Caching and [Memoization](https://github.com/HowProgrammingWorks/Memoization)
47+
2. Caching and [Memoization](https://github.com/HowProgrammingWorks/Memoization)
5148
3. [Mixins](https://github.com/HowProgrammingWorks/Mixin) as decorators and nonlinear inheritance
5249
4. Iterators and [generators](https://github.com/HowProgrammingWorks/Generator)
5350
5. [Asynchronous execution](https://github.com/HowProgrammingWorks/AsynchronousProgramming), I/O and parallelism
5451
6. Events and [EventEmitter](https://github.com/HowProgrammingWorks/EventEmitter)
5552
7. [Promises](https://github.com/HowProgrammingWorks/Promise) and [chaining](https://github.com/HowProgrammingWorks/Chaining)
5653
8. [Serialization](https://github.com/HowProgrammingWorks/Serialization) and deserialization
5754
9. [Regular expressions](https://github.com/HowProgrammingWorks/RegExp)
58-
<!--
59-
https://github.com/HowProgrammingWorks/Concurrency
60-
https://github.com/HowProgrammingWorks/Proxy
61-
https://github.com/HowProgrammingWorks/Symbol
62-
-->
6355

6456
## Software Architecture
6557

README.ru.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
анонимные и лямбда-выражения, чистые функции и побочные эффекты
1313
4. Суперпозиция и
1414
[конпозиция](https://github.com/HowProgrammingWorks/Composition) функций,
15-
[Частичное применение](https://github.com/HowProgrammingWorks/PartialApplication),
15+
[частичное применение](https://github.com/HowProgrammingWorks/PartialApplication),
1616
каррирование и [функции-обертки](https://github.com/HowProgrammingWorks/Wrapper)
1717
5. Функции [высшего порядка](https://github.com/HowProgrammingWorks/HigherOrderFunction)
1818
включая колбеки и [замыкания](https://github.com/HowProgrammingWorks/Closure)
@@ -34,9 +34,6 @@
3434
1. [Списки](https://github.com/HowProgrammingWorks/LinkedList): односвязные, двусвязный, кольцо
3535
2. [Деревья](https://github.com/HowProgrammingWorks/TreeNode): классификация, реализация, обход
3636
3. Графы включая [ориентированные](https://github.com/HowProgrammingWorks/DirectedGraph) графы
37-
<!--
38-
https://github.com/HowProgrammingWorks/Collections
39-
-->
4037

4138
## Файлы, потоки и буферы
4239

@@ -47,19 +44,14 @@ https://github.com/HowProgrammingWorks/Collections
4744
## Продвинутые темы
4845

4946
1. [Функторы](https://github.com/HowProgrammingWorks/Functor), аппликативные функторы и монады
50-
2 Кеширование и [мемоизация](https://github.com/HowProgrammingWorks/Memoization)
47+
2. Кеширование и [мемоизация](https://github.com/HowProgrammingWorks/Memoization)
5148
3. [Примеси](https://github.com/HowProgrammingWorks/Mixin) как декораторы и непрямое наследование
5249
4. Итераторы и [генераторы](https://github.com/HowProgrammingWorks/Generator)
5350
5. [Асинхронное исполнение](https://github.com/HowProgrammingWorks/AsynchronousProgramming), ввод/вывод и параллелизм
5451
6. События и [EventEmitter](https://github.com/HowProgrammingWorks/EventEmitter)
5552
7. [Promises](https://github.com/HowProgrammingWorks/Promise) и [чеининг](https://github.com/HowProgrammingWorks/Chaining)
5653
8. [Сериализация](https://github.com/HowProgrammingWorks/Serialization) и десериализация
5754
9. [Регулярные выражения](https://github.com/HowProgrammingWorks/RegExp)
58-
<!--
59-
https://github.com/HowProgrammingWorks/Concurrency
60-
https://github.com/HowProgrammingWorks/Proxy
61-
https://github.com/HowProgrammingWorks/Symbol
62-
-->
6355

6456
## Программная архитектура
6557

README.ua.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
3. [Функції](https://github.com/HowProgrammingWorks/Function),
1212
анонімні та лямбда-функції, чисті функції та побічні ефекти
1313
4. Суперпозиція та
14-
[композиція](https://github.com/HowProgrammingWorks/Composition) функцій
15-
[Часткове застосування](https://github.com/HowProgrammingWorks/PartialApplication),
14+
[композиція](https://github.com/HowProgrammingWorks/Composition) функцій,
15+
[часткове застосування](https://github.com/HowProgrammingWorks/PartialApplication),
1616
каррінг та [функції-обгортки](https://github.com/HowProgrammingWorks/Wrapper)
1717
5. [Функції вищого порядку](https://github.com/HowProgrammingWorks/HigherOrderFunction),
1818
колбеки та [замикання](https://github.com/HowProgrammingWorks/Closure)
@@ -23,7 +23,7 @@
2323

2424
## Допоміжні теми
2525

26-
1. [Інструменти розробки] (https://github.com/HowProgrammingWorks/Tools)
26+
1. [Інструменти розробки](https://github.com/HowProgrammingWorks/Tools)
2727
та конфігурація середовища розробки
2828
2. Системи [управління версіями](https://github.com/HowProgrammingWorks/VersionControl)
2929
і групова робота
@@ -40,9 +40,6 @@
4040
реалізація, методи обходу
4141
3. Графи та [орієнтовані](https://github.com/HowProgrammingWorks/DirectedGraph)
4242
графи
43-
<!--
44-
https://github.com/HowProgrammingWorks/Collections
45-
-->
4643

4744
## Файли, потоки та буфери
4845

@@ -61,16 +58,11 @@ https://github.com/HowProgrammingWorks/Collections
6158
5. [Асинхронне виконання](https://github.com/HowProgrammingWorks/AsynchronousProgramming),
6259
ввід/вивід та паралелізм
6360
6. Події та [EventEmitter](https://github.com/HowProgrammingWorks/EventEmitter)
64-
7. [Promises](https://github.com/HowProgrammingWorks/Promise) та [чеінінг]
65-
(https://github.com/HowProgrammingWorks/Chaining)
61+
7. [Promises](https://github.com/HowProgrammingWorks/Promise) та
62+
[чеінінг](https://github.com/HowProgrammingWorks/Chaining)
6663
8. [Серіалізація](https://github.com/HowProgrammingWorks/Serialization) та
6764
десеріалізація
6865
9. [Регулярні вирази](https://github.com/HowProgrammingWorks/RegExp)
69-
<!--
70-
https://github.com/HowProgrammingWorks/Concurrency
71-
https://github.com/HowProgrammingWorks/Proxy
72-
https://github.com/HowProgrammingWorks/Symbol
73-
-->
7466

7567
## Архітектура програмного забезпечення
7668

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy