├── .gitignore ├── LICENSE ├── README.md ├── cpp ├── sprint0 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── e.cpp ├── sprint1_nonfinals │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ ├── f.cpp │ ├── g.cpp │ ├── h.cpp │ ├── i.cpp │ ├── j.cpp │ ├── k.cpp │ └── l.cpp ├── sprint2 │ ├── B │ │ ├── README.md │ │ └── code.cpp │ ├── C │ │ ├── README.md │ │ └── code.cpp │ ├── D │ │ ├── README.md │ │ └── code.cpp │ └── E │ │ ├── README.md │ │ └── code.cpp ├── sprint3 │ └── K │ │ ├── README.md │ │ └── code.cpp ├── sprint3_final │ └── A │ │ ├── README.md │ │ └── code.cpp ├── sprint5 │ ├── A │ │ ├── README.md │ │ └── code.cpp │ ├── B │ │ ├── README.md │ │ └── code.cpp │ ├── C │ │ ├── README.md │ │ └── code.cpp │ ├── D │ │ ├── README.md │ │ └── code.cpp │ ├── E │ │ ├── README.md │ │ └── code.cpp │ ├── F │ │ ├── README.md │ │ └── code.cpp │ ├── G │ │ ├── README.md │ │ └── code.cpp │ ├── H │ │ ├── README.md │ │ └── code.cpp │ ├── J │ │ ├── README.md │ │ └── code.cpp │ ├── K │ │ ├── README.md │ │ └── code.cpp │ ├── L │ │ ├── README.md │ │ └── code.cpp │ ├── M │ │ ├── README.md │ │ └── code.cpp │ └── N │ │ ├── README.md │ │ └── code.cpp └── sprint5_final │ └── B │ ├── README.md │ └── code.cpp ├── csharp ├── sprint0 │ ├── A.cs │ ├── B.cs │ ├── C.cs │ ├── D.cs │ └── E.cs ├── sprint1_nonfinals │ ├── A.cs │ ├── B.cs │ ├── C.cs │ ├── D.cs │ ├── E.cs │ ├── F.cs │ ├── G.cs │ ├── H.cs │ ├── I.cs │ ├── J.cs │ ├── K.cs │ └── L.cs ├── sprint2 │ ├── B │ │ ├── README.md │ │ └── Solution.cs │ ├── C │ │ ├── README.md │ │ └── Solution.cs │ ├── D │ │ ├── README.md │ │ └── Solution.cs │ └── E │ │ ├── README.md │ │ └── Solution.cs ├── sprint3 │ └── K │ │ ├── README.md │ │ └── Solution.cs ├── sprint3_final │ └── A │ │ ├── README.md │ │ └── Solution.cs ├── sprint5 │ ├── A │ │ ├── README.md │ │ └── Solution.cs │ ├── B │ │ ├── README.md │ │ └── Solution.cs │ ├── C │ │ ├── README.md │ │ └── Solution.cs │ ├── D │ │ ├── README.md │ │ └── Solution.cs │ ├── E │ │ ├── README.md │ │ └── Solution.cs │ ├── F │ │ ├── README.md │ │ └── Solution.cs │ ├── G │ │ ├── README.md │ │ └── Solution.cs │ ├── H │ │ ├── README.md │ │ └── Solution.cs │ ├── J │ │ ├── README.md │ │ └── Solution.cs │ ├── K │ │ ├── README.md │ │ └── Solution.cs │ ├── L │ │ ├── README.md │ │ └── Solution.cs │ ├── M │ │ ├── README.md │ │ └── Solution.cs │ └── N │ │ ├── README.md │ │ └── Solution.cs └── sprint5_final │ └── B │ ├── README.md │ └── Solution.cs ├── go ├── sprint0 │ ├── a.go │ ├── b.go │ ├── c.go │ ├── d.go │ └── e.go ├── sprint1_nonfinals │ ├── a.go │ ├── b.go │ ├── c.go │ ├── d.go │ ├── e.go │ ├── f.go │ ├── g.go │ ├── h.go │ ├── i.go │ ├── j.go │ ├── k.go │ └── l.go ├── sprint2 │ ├── B │ │ ├── README.md │ │ └── code.go │ ├── C │ │ ├── README.md │ │ └── code.go │ ├── D │ │ ├── README.md │ │ └── code.go │ └── E │ │ ├── README.md │ │ └── code.go ├── sprint3 │ └── K │ │ ├── README.md │ │ └── code.go ├── sprint3_final │ └── A │ │ ├── README.md │ │ └── code.go ├── sprint5 │ ├── A │ │ ├── README.md │ │ └── code.go │ ├── B │ │ ├── README.md │ │ └── code.go │ ├── C │ │ ├── README.md │ │ └── code.go │ ├── D │ │ ├── README.md │ │ └── code.go │ ├── E │ │ ├── README.md │ │ └── code.go │ ├── F │ │ ├── README.md │ │ └── code.go │ ├── G │ │ ├── README.md │ │ └── code.go │ ├── H │ │ ├── README.md │ │ └── code.go │ ├── J │ │ ├── README.md │ │ └── code.go │ ├── K │ │ ├── README.md │ │ └── code.go │ ├── L │ │ ├── README.md │ │ └── code.go │ ├── M │ │ ├── README.md │ │ └── code.go │ └── N │ │ ├── README.md │ │ └── code.go └── sprint5_final │ └── B │ ├── README.md │ └── code.go ├── java ├── sprint0 │ ├── A.java │ ├── B.java │ ├── C.java │ ├── D.java │ └── E.java ├── sprint1_nonfinals │ ├── A.java │ ├── B.java │ ├── C.java │ ├── D.java │ ├── E.java │ ├── F.java │ ├── G.java │ ├── H.java │ ├── I.java │ ├── J.java │ ├── K.java │ └── L.java ├── sprint2 │ ├── B │ │ ├── README.md │ │ └── Solution.java │ ├── C │ │ ├── README.md │ │ └── Solution.java │ ├── D │ │ ├── README.md │ │ └── Solution.java │ └── E │ │ ├── README.md │ │ └── Solution.java ├── sprint3 │ └── K │ │ ├── README.md │ │ └── Solution.java ├── sprint3_final │ └── A │ │ ├── README.md │ │ └── Solution.java ├── sprint5 │ ├── A │ │ ├── README.md │ │ └── Solution.java │ ├── B │ │ ├── README.md │ │ └── Solution.java │ ├── C │ │ ├── README.md │ │ └── Solution.java │ ├── D │ │ ├── README.md │ │ └── Solution.java │ ├── E │ │ ├── README.md │ │ └── Solution.java │ ├── F │ │ ├── README.md │ │ └── Solution.java │ ├── G │ │ ├── README.md │ │ └── Solution.java │ ├── H │ │ ├── README.md │ │ └── Solution.java │ ├── J │ │ ├── README.md │ │ └── Solution.java │ ├── K │ │ ├── README.md │ │ └── Solution.java │ ├── L │ │ ├── README.md │ │ └── Solution.java │ ├── M │ │ ├── README.md │ │ └── Solution.java │ └── N │ │ ├── README.md │ │ └── Solution.java └── sprint5_final │ └── B │ ├── README.md │ └── Solution.java ├── js ├── sprint0 │ ├── a.js │ ├── b.js │ ├── c.js │ ├── d.js │ └── e.js ├── sprint1_nonfinals │ ├── a.js │ ├── b.js │ ├── c.js │ ├── d.js │ ├── e.js │ ├── f.js │ ├── g.js │ ├── h.js │ ├── i.js │ ├── j.js │ ├── k.js │ └── l.js ├── sprint2 │ ├── B │ │ ├── README.md │ │ └── code.js │ ├── C │ │ ├── README.md │ │ └── code.js │ ├── D │ │ ├── README.md │ │ └── code.js │ └── E │ │ ├── README.md │ │ └── code.js ├── sprint3 │ └── K │ │ ├── README.md │ │ └── code.js ├── sprint3_final │ └── A │ │ ├── README.md │ │ └── code.js ├── sprint5 │ ├── A │ │ ├── README.md │ │ └── code.js │ ├── B │ │ ├── README.md │ │ └── code.js │ ├── C │ │ ├── README.md │ │ └── code.js │ ├── D │ │ ├── README.md │ │ └── code.js │ ├── E │ │ ├── README.md │ │ └── code.js │ ├── F │ │ ├── README.md │ │ └── code.js │ ├── G │ │ ├── README.md │ │ └── code.js │ ├── H │ │ ├── README.md │ │ └── code.js │ ├── J │ │ ├── README.md │ │ └── code.js │ ├── K │ │ ├── README.md │ │ └── code.js │ ├── L │ │ ├── README.md │ │ └── code.js │ ├── M │ │ ├── README.md │ │ └── code.js │ └── N │ │ ├── README.md │ │ └── code.js └── sprint5_final │ └── B │ ├── README.md │ └── code.js ├── kotlin ├── sprint0 │ ├── A.kt │ ├── B.kt │ ├── C.kt │ ├── D.kt │ └── E.kt ├── sprint1_nonfinals │ ├── A.kt │ ├── B.kt │ ├── C.kt │ ├── D.kt │ ├── E.kt │ ├── F.kt │ ├── G.kt │ ├── H.kt │ ├── I.kt │ ├── J.kt │ ├── K.kt │ └── L.kt ├── sprint2 │ ├── B │ │ ├── README.md │ │ └── Solution.kt │ ├── C │ │ ├── README.md │ │ └── Solution.kt │ ├── D │ │ ├── README.md │ │ └── Solution.kt │ └── E │ │ ├── README.md │ │ └── Solution.kt ├── sprint3 │ └── K │ │ ├── README.md │ │ └── Solution.kt ├── sprint3_final │ └── A │ │ ├── README.md │ │ └── Solution.kt ├── sprint5 │ ├── A │ │ ├── README.md │ │ └── Solution.kt │ ├── B │ │ ├── README.md │ │ └── Solution.kt │ ├── C │ │ ├── README.md │ │ └── Solution.kt │ ├── D │ │ ├── README.md │ │ └── Solution.kt │ ├── E │ │ ├── README.md │ │ └── Solution.kt │ ├── F │ │ ├── README.md │ │ └── Solution.kt │ ├── G │ │ ├── README.md │ │ └── Solution.kt │ ├── H │ │ ├── README.md │ │ └── Solution.kt │ ├── J │ │ ├── README.md │ │ └── Solution.kt │ ├── K │ │ ├── README.md │ │ └── Solution.kt │ ├── L │ │ ├── README.md │ │ └── Solution.kt │ ├── M │ │ ├── README.md │ │ └── Solution.kt │ └── N │ │ ├── README.md │ │ └── Solution.kt └── sprint5_final │ └── B │ ├── README.md │ └── Solution.kt ├── python ├── sprint0 │ ├── a.py │ ├── b.py │ ├── c.py │ ├── d.py │ └── e.py ├── sprint1_nonfinals │ ├── a.py │ ├── b.py │ ├── c.py │ ├── d.py │ ├── e.py │ ├── f.py │ ├── g.py │ ├── h.py │ ├── i.py │ ├── j.py │ ├── k.py │ └── l.py ├── sprint2 │ ├── B │ │ ├── README.md │ │ └── code.py │ ├── C │ │ ├── README.md │ │ └── code.py │ ├── D │ │ ├── README.md │ │ └── code.py │ └── E │ │ ├── README.md │ │ └── code.py ├── sprint3 │ └── K │ │ ├── README.md │ │ └── code.py ├── sprint3_final │ └── A │ │ ├── README.md │ │ └── code.py ├── sprint5 │ ├── A │ │ ├── README.md │ │ └── code.py │ ├── B │ │ ├── README.md │ │ └── code.py │ ├── C │ │ ├── README.md │ │ └── code.py │ ├── D │ │ ├── README.md │ │ └── code.py │ ├── E │ │ ├── README.md │ │ └── code.py │ ├── F │ │ ├── README.md │ │ └── code.py │ ├── G │ │ ├── README.md │ │ └── code.py │ ├── H │ │ ├── README.md │ │ └── code.py │ ├── J │ │ ├── README.md │ │ └── code.py │ ├── K │ │ ├── README.md │ │ └── code.py │ ├── L │ │ ├── README.md │ │ └── code.py │ ├── M │ │ ├── README.md │ │ └── code.py │ └── N │ │ ├── README.md │ │ └── code.py └── sprint5_final │ └── B │ ├── README.md │ └── code.py └── swift ├── sprint0 ├── A.swift ├── B.swift ├── C.swift ├── D.swift └── E.swift ├── sprint1_nonfinals ├── a.swift ├── b.swift ├── c.swift ├── d.swift ├── e.swift ├── f.swift ├── g.swift ├── h.swift ├── i.swift ├── j.swift ├── k.swift └── l.swift ├── sprint2 ├── B │ ├── README.md │ └── solution.swift ├── C │ ├── README.md │ └── solution.swift ├── D │ ├── README.md │ └── solution.swift └── E │ ├── README.md │ └── solution.swift ├── sprint3 └── K │ ├── README.md │ └── solution.swift ├── sprint3_final └── A │ ├── README.md │ └── solution.swift ├── sprint5 ├── A │ ├── README.md │ └── solution.swift ├── B │ ├── README.md │ └── solution.swift ├── C │ ├── README.md │ └── solution.swift ├── D │ ├── README.md │ └── solution.swift ├── E │ ├── README.md │ └── solution.swift ├── F │ ├── README.md │ └── solution.swift ├── G │ ├── README.md │ └── solution.swift ├── H │ ├── README.md │ └── solution.swift ├── J │ ├── README.md │ └── solution.swift ├── K │ ├── README.md │ └── solution.swift ├── L │ ├── README.md │ └── solution.swift ├── M │ ├── README.md │ └── solution.swift └── N │ ├── README.md │ └── solution.swift └── sprint5_final └── B ├── README.md └── solution.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | .idea 4 | run.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/README.md -------------------------------------------------------------------------------- /cpp/sprint0/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint0/a.cpp -------------------------------------------------------------------------------- /cpp/sprint0/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint0/b.cpp -------------------------------------------------------------------------------- /cpp/sprint0/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint0/c.cpp -------------------------------------------------------------------------------- /cpp/sprint0/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint0/d.cpp -------------------------------------------------------------------------------- /cpp/sprint0/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint0/e.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/a.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/b.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/c.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/d.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/e.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/f.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/g.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/h.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/i.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/j.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/k.cpp -------------------------------------------------------------------------------- /cpp/sprint1_nonfinals/l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint1_nonfinals/l.cpp -------------------------------------------------------------------------------- /cpp/sprint2/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint2/B/README.md -------------------------------------------------------------------------------- /cpp/sprint2/B/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint2/B/code.cpp -------------------------------------------------------------------------------- /cpp/sprint2/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint2/C/README.md -------------------------------------------------------------------------------- /cpp/sprint2/C/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint2/C/code.cpp -------------------------------------------------------------------------------- /cpp/sprint2/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint2/D/README.md -------------------------------------------------------------------------------- /cpp/sprint2/D/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint2/D/code.cpp -------------------------------------------------------------------------------- /cpp/sprint2/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint2/E/README.md -------------------------------------------------------------------------------- /cpp/sprint2/E/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint2/E/code.cpp -------------------------------------------------------------------------------- /cpp/sprint3/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint3/K/README.md -------------------------------------------------------------------------------- /cpp/sprint3/K/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint3/K/code.cpp -------------------------------------------------------------------------------- /cpp/sprint3_final/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint3_final/A/README.md -------------------------------------------------------------------------------- /cpp/sprint3_final/A/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint3_final/A/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/A/README.md -------------------------------------------------------------------------------- /cpp/sprint5/A/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/A/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/B/README.md -------------------------------------------------------------------------------- /cpp/sprint5/B/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/B/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/C/README.md -------------------------------------------------------------------------------- /cpp/sprint5/C/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/C/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/D/README.md -------------------------------------------------------------------------------- /cpp/sprint5/D/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/D/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/E/README.md -------------------------------------------------------------------------------- /cpp/sprint5/E/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/E/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/F/README.md -------------------------------------------------------------------------------- /cpp/sprint5/F/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/F/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/G/README.md -------------------------------------------------------------------------------- /cpp/sprint5/G/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/G/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/H/README.md -------------------------------------------------------------------------------- /cpp/sprint5/H/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/H/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/J/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/J/README.md -------------------------------------------------------------------------------- /cpp/sprint5/J/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/J/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/K/README.md -------------------------------------------------------------------------------- /cpp/sprint5/K/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/K/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/L/README.md -------------------------------------------------------------------------------- /cpp/sprint5/L/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/L/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/M/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/M/README.md -------------------------------------------------------------------------------- /cpp/sprint5/M/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/M/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5/N/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/N/README.md -------------------------------------------------------------------------------- /cpp/sprint5/N/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5/N/code.cpp -------------------------------------------------------------------------------- /cpp/sprint5_final/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5_final/B/README.md -------------------------------------------------------------------------------- /cpp/sprint5_final/B/code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/cpp/sprint5_final/B/code.cpp -------------------------------------------------------------------------------- /csharp/sprint0/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint0/A.cs -------------------------------------------------------------------------------- /csharp/sprint0/B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint0/B.cs -------------------------------------------------------------------------------- /csharp/sprint0/C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint0/C.cs -------------------------------------------------------------------------------- /csharp/sprint0/D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint0/D.cs -------------------------------------------------------------------------------- /csharp/sprint0/E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint0/E.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/A.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/B.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/C.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/D.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/E.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/F.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/G.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/G.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/H.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/H.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/I.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/I.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/J.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/J.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/K.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/K.cs -------------------------------------------------------------------------------- /csharp/sprint1_nonfinals/L.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint1_nonfinals/L.cs -------------------------------------------------------------------------------- /csharp/sprint2/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint2/B/README.md -------------------------------------------------------------------------------- /csharp/sprint2/B/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint2/B/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint2/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint2/C/README.md -------------------------------------------------------------------------------- /csharp/sprint2/C/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint2/C/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint2/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint2/D/README.md -------------------------------------------------------------------------------- /csharp/sprint2/D/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint2/D/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint2/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint2/E/README.md -------------------------------------------------------------------------------- /csharp/sprint2/E/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint2/E/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint3/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint3/K/README.md -------------------------------------------------------------------------------- /csharp/sprint3/K/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint3/K/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint3_final/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint3_final/A/README.md -------------------------------------------------------------------------------- /csharp/sprint3_final/A/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint3_final/A/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/A/README.md -------------------------------------------------------------------------------- /csharp/sprint5/A/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/A/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/B/README.md -------------------------------------------------------------------------------- /csharp/sprint5/B/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/B/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/C/README.md -------------------------------------------------------------------------------- /csharp/sprint5/C/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/C/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/D/README.md -------------------------------------------------------------------------------- /csharp/sprint5/D/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/D/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/E/README.md -------------------------------------------------------------------------------- /csharp/sprint5/E/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/E/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/F/README.md -------------------------------------------------------------------------------- /csharp/sprint5/F/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/F/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/G/README.md -------------------------------------------------------------------------------- /csharp/sprint5/G/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/G/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/H/README.md -------------------------------------------------------------------------------- /csharp/sprint5/H/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/H/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/J/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/J/README.md -------------------------------------------------------------------------------- /csharp/sprint5/J/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/J/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/K/README.md -------------------------------------------------------------------------------- /csharp/sprint5/K/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/K/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/L/README.md -------------------------------------------------------------------------------- /csharp/sprint5/L/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/L/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/M/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/M/README.md -------------------------------------------------------------------------------- /csharp/sprint5/M/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/M/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5/N/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/N/README.md -------------------------------------------------------------------------------- /csharp/sprint5/N/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5/N/Solution.cs -------------------------------------------------------------------------------- /csharp/sprint5_final/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5_final/B/README.md -------------------------------------------------------------------------------- /csharp/sprint5_final/B/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/csharp/sprint5_final/B/Solution.cs -------------------------------------------------------------------------------- /go/sprint0/a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint0/a.go -------------------------------------------------------------------------------- /go/sprint0/b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint0/b.go -------------------------------------------------------------------------------- /go/sprint0/c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint0/c.go -------------------------------------------------------------------------------- /go/sprint0/d.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint0/d.go -------------------------------------------------------------------------------- /go/sprint0/e.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint0/e.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/a.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/b.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/c.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/d.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/d.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/e.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/e.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/f.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/f.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/g.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/h.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/h.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/i.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/j.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/j.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/k.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/k.go -------------------------------------------------------------------------------- /go/sprint1_nonfinals/l.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint1_nonfinals/l.go -------------------------------------------------------------------------------- /go/sprint2/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint2/B/README.md -------------------------------------------------------------------------------- /go/sprint2/B/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint2/B/code.go -------------------------------------------------------------------------------- /go/sprint2/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint2/C/README.md -------------------------------------------------------------------------------- /go/sprint2/C/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint2/C/code.go -------------------------------------------------------------------------------- /go/sprint2/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint2/D/README.md -------------------------------------------------------------------------------- /go/sprint2/D/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint2/D/code.go -------------------------------------------------------------------------------- /go/sprint2/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint2/E/README.md -------------------------------------------------------------------------------- /go/sprint2/E/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint2/E/code.go -------------------------------------------------------------------------------- /go/sprint3/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint3/K/README.md -------------------------------------------------------------------------------- /go/sprint3/K/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint3/K/code.go -------------------------------------------------------------------------------- /go/sprint3_final/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint3_final/A/README.md -------------------------------------------------------------------------------- /go/sprint3_final/A/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint3_final/A/code.go -------------------------------------------------------------------------------- /go/sprint5/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/A/README.md -------------------------------------------------------------------------------- /go/sprint5/A/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/A/code.go -------------------------------------------------------------------------------- /go/sprint5/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/B/README.md -------------------------------------------------------------------------------- /go/sprint5/B/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/B/code.go -------------------------------------------------------------------------------- /go/sprint5/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/C/README.md -------------------------------------------------------------------------------- /go/sprint5/C/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/C/code.go -------------------------------------------------------------------------------- /go/sprint5/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/D/README.md -------------------------------------------------------------------------------- /go/sprint5/D/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/D/code.go -------------------------------------------------------------------------------- /go/sprint5/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/E/README.md -------------------------------------------------------------------------------- /go/sprint5/E/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/E/code.go -------------------------------------------------------------------------------- /go/sprint5/F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/F/README.md -------------------------------------------------------------------------------- /go/sprint5/F/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/F/code.go -------------------------------------------------------------------------------- /go/sprint5/G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/G/README.md -------------------------------------------------------------------------------- /go/sprint5/G/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/G/code.go -------------------------------------------------------------------------------- /go/sprint5/H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/H/README.md -------------------------------------------------------------------------------- /go/sprint5/H/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/H/code.go -------------------------------------------------------------------------------- /go/sprint5/J/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/J/README.md -------------------------------------------------------------------------------- /go/sprint5/J/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/J/code.go -------------------------------------------------------------------------------- /go/sprint5/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/K/README.md -------------------------------------------------------------------------------- /go/sprint5/K/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/K/code.go -------------------------------------------------------------------------------- /go/sprint5/L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/L/README.md -------------------------------------------------------------------------------- /go/sprint5/L/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/L/code.go -------------------------------------------------------------------------------- /go/sprint5/M/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/M/README.md -------------------------------------------------------------------------------- /go/sprint5/M/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/M/code.go -------------------------------------------------------------------------------- /go/sprint5/N/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/N/README.md -------------------------------------------------------------------------------- /go/sprint5/N/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5/N/code.go -------------------------------------------------------------------------------- /go/sprint5_final/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5_final/B/README.md -------------------------------------------------------------------------------- /go/sprint5_final/B/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/go/sprint5_final/B/code.go -------------------------------------------------------------------------------- /java/sprint0/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint0/A.java -------------------------------------------------------------------------------- /java/sprint0/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint0/B.java -------------------------------------------------------------------------------- /java/sprint0/C.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint0/C.java -------------------------------------------------------------------------------- /java/sprint0/D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint0/D.java -------------------------------------------------------------------------------- /java/sprint0/E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint0/E.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/A.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/B.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/C.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/C.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/D.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/E.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/E.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/F.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/F.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/G.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/G.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/H.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/H.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/I.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/I.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/J.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/J.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/K.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/K.java -------------------------------------------------------------------------------- /java/sprint1_nonfinals/L.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint1_nonfinals/L.java -------------------------------------------------------------------------------- /java/sprint2/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint2/B/README.md -------------------------------------------------------------------------------- /java/sprint2/B/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint2/B/Solution.java -------------------------------------------------------------------------------- /java/sprint2/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint2/C/README.md -------------------------------------------------------------------------------- /java/sprint2/C/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint2/C/Solution.java -------------------------------------------------------------------------------- /java/sprint2/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint2/D/README.md -------------------------------------------------------------------------------- /java/sprint2/D/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint2/D/Solution.java -------------------------------------------------------------------------------- /java/sprint2/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint2/E/README.md -------------------------------------------------------------------------------- /java/sprint2/E/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint2/E/Solution.java -------------------------------------------------------------------------------- /java/sprint3/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint3/K/README.md -------------------------------------------------------------------------------- /java/sprint3/K/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint3/K/Solution.java -------------------------------------------------------------------------------- /java/sprint3_final/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint3_final/A/README.md -------------------------------------------------------------------------------- /java/sprint3_final/A/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint3_final/A/Solution.java -------------------------------------------------------------------------------- /java/sprint5/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/A/README.md -------------------------------------------------------------------------------- /java/sprint5/A/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/A/Solution.java -------------------------------------------------------------------------------- /java/sprint5/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/B/README.md -------------------------------------------------------------------------------- /java/sprint5/B/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/B/Solution.java -------------------------------------------------------------------------------- /java/sprint5/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/C/README.md -------------------------------------------------------------------------------- /java/sprint5/C/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/C/Solution.java -------------------------------------------------------------------------------- /java/sprint5/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/D/README.md -------------------------------------------------------------------------------- /java/sprint5/D/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/D/Solution.java -------------------------------------------------------------------------------- /java/sprint5/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/E/README.md -------------------------------------------------------------------------------- /java/sprint5/E/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/E/Solution.java -------------------------------------------------------------------------------- /java/sprint5/F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/F/README.md -------------------------------------------------------------------------------- /java/sprint5/F/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/F/Solution.java -------------------------------------------------------------------------------- /java/sprint5/G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/G/README.md -------------------------------------------------------------------------------- /java/sprint5/G/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/G/Solution.java -------------------------------------------------------------------------------- /java/sprint5/H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/H/README.md -------------------------------------------------------------------------------- /java/sprint5/H/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/H/Solution.java -------------------------------------------------------------------------------- /java/sprint5/J/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/J/README.md -------------------------------------------------------------------------------- /java/sprint5/J/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/J/Solution.java -------------------------------------------------------------------------------- /java/sprint5/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/K/README.md -------------------------------------------------------------------------------- /java/sprint5/K/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/K/Solution.java -------------------------------------------------------------------------------- /java/sprint5/L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/L/README.md -------------------------------------------------------------------------------- /java/sprint5/L/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/L/Solution.java -------------------------------------------------------------------------------- /java/sprint5/M/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/M/README.md -------------------------------------------------------------------------------- /java/sprint5/M/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/M/Solution.java -------------------------------------------------------------------------------- /java/sprint5/N/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/N/README.md -------------------------------------------------------------------------------- /java/sprint5/N/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5/N/Solution.java -------------------------------------------------------------------------------- /java/sprint5_final/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5_final/B/README.md -------------------------------------------------------------------------------- /java/sprint5_final/B/Solution.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/java/sprint5_final/B/Solution.java -------------------------------------------------------------------------------- /js/sprint0/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint0/a.js -------------------------------------------------------------------------------- /js/sprint0/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint0/b.js -------------------------------------------------------------------------------- /js/sprint0/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint0/c.js -------------------------------------------------------------------------------- /js/sprint0/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint0/d.js -------------------------------------------------------------------------------- /js/sprint0/e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint0/e.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/a.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/b.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/c.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/d.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/e.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/f.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/g.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/g.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/h.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/i.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/i.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/j.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/j.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/k.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/k.js -------------------------------------------------------------------------------- /js/sprint1_nonfinals/l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint1_nonfinals/l.js -------------------------------------------------------------------------------- /js/sprint2/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint2/B/README.md -------------------------------------------------------------------------------- /js/sprint2/B/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint2/B/code.js -------------------------------------------------------------------------------- /js/sprint2/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint2/C/README.md -------------------------------------------------------------------------------- /js/sprint2/C/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint2/C/code.js -------------------------------------------------------------------------------- /js/sprint2/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint2/D/README.md -------------------------------------------------------------------------------- /js/sprint2/D/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint2/D/code.js -------------------------------------------------------------------------------- /js/sprint2/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint2/E/README.md -------------------------------------------------------------------------------- /js/sprint2/E/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint2/E/code.js -------------------------------------------------------------------------------- /js/sprint3/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint3/K/README.md -------------------------------------------------------------------------------- /js/sprint3/K/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint3/K/code.js -------------------------------------------------------------------------------- /js/sprint3_final/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint3_final/A/README.md -------------------------------------------------------------------------------- /js/sprint3_final/A/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint3_final/A/code.js -------------------------------------------------------------------------------- /js/sprint5/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/A/README.md -------------------------------------------------------------------------------- /js/sprint5/A/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/A/code.js -------------------------------------------------------------------------------- /js/sprint5/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/B/README.md -------------------------------------------------------------------------------- /js/sprint5/B/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/B/code.js -------------------------------------------------------------------------------- /js/sprint5/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/C/README.md -------------------------------------------------------------------------------- /js/sprint5/C/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/C/code.js -------------------------------------------------------------------------------- /js/sprint5/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/D/README.md -------------------------------------------------------------------------------- /js/sprint5/D/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/D/code.js -------------------------------------------------------------------------------- /js/sprint5/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/E/README.md -------------------------------------------------------------------------------- /js/sprint5/E/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/E/code.js -------------------------------------------------------------------------------- /js/sprint5/F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/F/README.md -------------------------------------------------------------------------------- /js/sprint5/F/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/F/code.js -------------------------------------------------------------------------------- /js/sprint5/G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/G/README.md -------------------------------------------------------------------------------- /js/sprint5/G/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/G/code.js -------------------------------------------------------------------------------- /js/sprint5/H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/H/README.md -------------------------------------------------------------------------------- /js/sprint5/H/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/H/code.js -------------------------------------------------------------------------------- /js/sprint5/J/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/J/README.md -------------------------------------------------------------------------------- /js/sprint5/J/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/J/code.js -------------------------------------------------------------------------------- /js/sprint5/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/K/README.md -------------------------------------------------------------------------------- /js/sprint5/K/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/K/code.js -------------------------------------------------------------------------------- /js/sprint5/L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/L/README.md -------------------------------------------------------------------------------- /js/sprint5/L/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/L/code.js -------------------------------------------------------------------------------- /js/sprint5/M/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/M/README.md -------------------------------------------------------------------------------- /js/sprint5/M/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/M/code.js -------------------------------------------------------------------------------- /js/sprint5/N/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/N/README.md -------------------------------------------------------------------------------- /js/sprint5/N/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5/N/code.js -------------------------------------------------------------------------------- /js/sprint5_final/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5_final/B/README.md -------------------------------------------------------------------------------- /js/sprint5_final/B/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/js/sprint5_final/B/code.js -------------------------------------------------------------------------------- /kotlin/sprint0/A.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint0/A.kt -------------------------------------------------------------------------------- /kotlin/sprint0/B.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint0/B.kt -------------------------------------------------------------------------------- /kotlin/sprint0/C.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint0/C.kt -------------------------------------------------------------------------------- /kotlin/sprint0/D.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint0/D.kt -------------------------------------------------------------------------------- /kotlin/sprint0/E.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint0/E.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/A.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/A.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/B.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/B.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/C.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/C.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/D.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/D.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/E.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/E.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/F.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/F.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/G.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/G.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/H.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/H.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/I.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/I.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/J.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/J.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/K.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/K.kt -------------------------------------------------------------------------------- /kotlin/sprint1_nonfinals/L.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint1_nonfinals/L.kt -------------------------------------------------------------------------------- /kotlin/sprint2/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint2/B/README.md -------------------------------------------------------------------------------- /kotlin/sprint2/B/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint2/B/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint2/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint2/C/README.md -------------------------------------------------------------------------------- /kotlin/sprint2/C/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint2/C/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint2/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint2/D/README.md -------------------------------------------------------------------------------- /kotlin/sprint2/D/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint2/D/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint2/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint2/E/README.md -------------------------------------------------------------------------------- /kotlin/sprint2/E/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint2/E/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint3/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint3/K/README.md -------------------------------------------------------------------------------- /kotlin/sprint3/K/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint3/K/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint3_final/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint3_final/A/README.md -------------------------------------------------------------------------------- /kotlin/sprint3_final/A/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint3_final/A/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/A/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/A/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/A/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/B/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/B/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/B/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/C/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/C/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/C/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/D/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/D/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/D/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/E/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/E/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/E/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/F/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/F/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/F/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/G/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/G/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/G/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/H/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/H/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/H/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/J/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/J/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/J/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/J/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/K/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/K/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/K/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/L/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/L/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/L/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/M/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/M/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/M/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/M/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5/N/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/N/README.md -------------------------------------------------------------------------------- /kotlin/sprint5/N/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5/N/Solution.kt -------------------------------------------------------------------------------- /kotlin/sprint5_final/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5_final/B/README.md -------------------------------------------------------------------------------- /kotlin/sprint5_final/B/Solution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/kotlin/sprint5_final/B/Solution.kt -------------------------------------------------------------------------------- /python/sprint0/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint0/a.py -------------------------------------------------------------------------------- /python/sprint0/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint0/b.py -------------------------------------------------------------------------------- /python/sprint0/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint0/c.py -------------------------------------------------------------------------------- /python/sprint0/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint0/d.py -------------------------------------------------------------------------------- /python/sprint0/e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint0/e.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/a.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/b.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/c.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/d.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/e.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/f.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/g.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/h.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/i.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/j.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/k.py -------------------------------------------------------------------------------- /python/sprint1_nonfinals/l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint1_nonfinals/l.py -------------------------------------------------------------------------------- /python/sprint2/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint2/B/README.md -------------------------------------------------------------------------------- /python/sprint2/B/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint2/B/code.py -------------------------------------------------------------------------------- /python/sprint2/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint2/C/README.md -------------------------------------------------------------------------------- /python/sprint2/C/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint2/C/code.py -------------------------------------------------------------------------------- /python/sprint2/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint2/D/README.md -------------------------------------------------------------------------------- /python/sprint2/D/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint2/D/code.py -------------------------------------------------------------------------------- /python/sprint2/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint2/E/README.md -------------------------------------------------------------------------------- /python/sprint2/E/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint2/E/code.py -------------------------------------------------------------------------------- /python/sprint3/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint3/K/README.md -------------------------------------------------------------------------------- /python/sprint3/K/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint3/K/code.py -------------------------------------------------------------------------------- /python/sprint3_final/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint3_final/A/README.md -------------------------------------------------------------------------------- /python/sprint3_final/A/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint3_final/A/code.py -------------------------------------------------------------------------------- /python/sprint5/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/A/README.md -------------------------------------------------------------------------------- /python/sprint5/A/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/A/code.py -------------------------------------------------------------------------------- /python/sprint5/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/B/README.md -------------------------------------------------------------------------------- /python/sprint5/B/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/B/code.py -------------------------------------------------------------------------------- /python/sprint5/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/C/README.md -------------------------------------------------------------------------------- /python/sprint5/C/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/C/code.py -------------------------------------------------------------------------------- /python/sprint5/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/D/README.md -------------------------------------------------------------------------------- /python/sprint5/D/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/D/code.py -------------------------------------------------------------------------------- /python/sprint5/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/E/README.md -------------------------------------------------------------------------------- /python/sprint5/E/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/E/code.py -------------------------------------------------------------------------------- /python/sprint5/F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/F/README.md -------------------------------------------------------------------------------- /python/sprint5/F/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/F/code.py -------------------------------------------------------------------------------- /python/sprint5/G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/G/README.md -------------------------------------------------------------------------------- /python/sprint5/G/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/G/code.py -------------------------------------------------------------------------------- /python/sprint5/H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/H/README.md -------------------------------------------------------------------------------- /python/sprint5/H/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/H/code.py -------------------------------------------------------------------------------- /python/sprint5/J/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/J/README.md -------------------------------------------------------------------------------- /python/sprint5/J/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/J/code.py -------------------------------------------------------------------------------- /python/sprint5/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/K/README.md -------------------------------------------------------------------------------- /python/sprint5/K/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/K/code.py -------------------------------------------------------------------------------- /python/sprint5/L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/L/README.md -------------------------------------------------------------------------------- /python/sprint5/L/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/L/code.py -------------------------------------------------------------------------------- /python/sprint5/M/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/M/README.md -------------------------------------------------------------------------------- /python/sprint5/M/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/M/code.py -------------------------------------------------------------------------------- /python/sprint5/N/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/N/README.md -------------------------------------------------------------------------------- /python/sprint5/N/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5/N/code.py -------------------------------------------------------------------------------- /python/sprint5_final/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5_final/B/README.md -------------------------------------------------------------------------------- /python/sprint5_final/B/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/python/sprint5_final/B/code.py -------------------------------------------------------------------------------- /swift/sprint0/A.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint0/A.swift -------------------------------------------------------------------------------- /swift/sprint0/B.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint0/B.swift -------------------------------------------------------------------------------- /swift/sprint0/C.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint0/C.swift -------------------------------------------------------------------------------- /swift/sprint0/D.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint0/D.swift -------------------------------------------------------------------------------- /swift/sprint0/E.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint0/E.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/a.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/a.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/b.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/b.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/c.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/c.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/d.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/d.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/e.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/e.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/f.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/f.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/g.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/g.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/h.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/h.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/i.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/i.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/j.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/j.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/k.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/k.swift -------------------------------------------------------------------------------- /swift/sprint1_nonfinals/l.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint1_nonfinals/l.swift -------------------------------------------------------------------------------- /swift/sprint2/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint2/B/README.md -------------------------------------------------------------------------------- /swift/sprint2/B/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint2/B/solution.swift -------------------------------------------------------------------------------- /swift/sprint2/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint2/C/README.md -------------------------------------------------------------------------------- /swift/sprint2/C/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint2/C/solution.swift -------------------------------------------------------------------------------- /swift/sprint2/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint2/D/README.md -------------------------------------------------------------------------------- /swift/sprint2/D/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint2/D/solution.swift -------------------------------------------------------------------------------- /swift/sprint2/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint2/E/README.md -------------------------------------------------------------------------------- /swift/sprint2/E/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint2/E/solution.swift -------------------------------------------------------------------------------- /swift/sprint3/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint3/K/README.md -------------------------------------------------------------------------------- /swift/sprint3/K/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint3/K/solution.swift -------------------------------------------------------------------------------- /swift/sprint3_final/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint3_final/A/README.md -------------------------------------------------------------------------------- /swift/sprint3_final/A/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint3_final/A/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/A/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/A/README.md -------------------------------------------------------------------------------- /swift/sprint5/A/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/A/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/B/README.md -------------------------------------------------------------------------------- /swift/sprint5/B/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/B/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/C/README.md -------------------------------------------------------------------------------- /swift/sprint5/C/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/C/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/D/README.md -------------------------------------------------------------------------------- /swift/sprint5/D/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/D/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/E/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/E/README.md -------------------------------------------------------------------------------- /swift/sprint5/E/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/E/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/F/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/F/README.md -------------------------------------------------------------------------------- /swift/sprint5/F/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/F/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/G/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/G/README.md -------------------------------------------------------------------------------- /swift/sprint5/G/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/G/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/H/README.md -------------------------------------------------------------------------------- /swift/sprint5/H/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/H/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/J/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/J/README.md -------------------------------------------------------------------------------- /swift/sprint5/J/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/J/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/K/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/K/README.md -------------------------------------------------------------------------------- /swift/sprint5/K/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/K/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/L/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/L/README.md -------------------------------------------------------------------------------- /swift/sprint5/L/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/L/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/M/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/M/README.md -------------------------------------------------------------------------------- /swift/sprint5/M/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/M/solution.swift -------------------------------------------------------------------------------- /swift/sprint5/N/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/N/README.md -------------------------------------------------------------------------------- /swift/sprint5/N/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5/N/solution.swift -------------------------------------------------------------------------------- /swift/sprint5_final/B/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5_final/B/README.md -------------------------------------------------------------------------------- /swift/sprint5_final/B/solution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yandex-Practicum/algorithms-templates/HEAD/swift/sprint5_final/B/solution.swift --------------------------------------------------------------------------------