-
MY PROJECTS
-
Recent Posts
- Reading.CleanArchitecture.Thoughts
- Algo.Java.PascalTriangle.ExampleOfDynamicProgramming
- Algo.Java.Find2Mins.InO(n)
- Algo.Java.RecursiveSlidingWindow
- Java.Algo.SlidingWindow
- Algo.Java.SlidingWindow.DoublingArrayForCircle
- Algo.Java.BinarySearch.For.Peaks
- Algo.Java.BinarySearch.Tip
- Algo.Java.BitManipulation.AnotherExample
- Algo.Java.SetBitMask
- Algo.Java.DFS.In.Matrix.AnotherExample2
- Algo.Java.DFS.In.Matrix.Another.Example
- Algo.Java.DFS.In.Matrix
- Algo.Java.BFS.In.Matrix
- Java.Algo.Kadane.MaxSumOfSubArray
- Algo.Java.GetBitFromInteger
- Algo.Java.BinarySearch.BrilliantProblem
- Algo.Java.StringTips
- Algo.Java.LoopSpeed
- Algo.Java.Arrays.AnotherExampleOfFrequencyApproach
Categories
- Aptana
- Azure
- C#
- DataSnap
- DBExpress
- Delphi
- Delphi и сети
- Delphi. Язык программирования
- ExtJS
- FastReport
- FireDAC
- FireMonkey
- GIT
- ICS
- IDE
- IIS
- Indy
- InnoSetup
- javascript
- jQuery
- JSON
- LiveBindings
- MSHTML
- MySQL
- PHP
- REST
- Ribbons
- SMS
- SQL инструкции
- SVN
- TRichView
- UniGui
- WebBroker
- WinAPI
- Windows
- Алгоритмы
- Без рубрики
- Деревья
- Ищу ответ
- Компонентостроение
- Мои компоненты
- Начальный уровень
- Обработка исключений
- Парсинг
- Потоки(Threads)
- Регулярные выражения
- Тестирование приложений
Category Archives: Без рубрики
Reading.CleanArchitecture.Thoughts
What does this history lesson on paradigms have to do with architecture?Everything. We use polymorphism as the mechanism to cross architecturalboundaries; we use functional programming to impose discipline on the location ofand access to data; and we use structured programming … Continue reading
Posted in Без рубрики
Leave a comment
Java.Algo.SlidingWindow
simple sliding window expanding sliding window expanding sliding window expanding sliding window example
Posted in Без рубрики
Leave a comment
Algo.Java.SlidingWindow.DoublingArrayForCircle
if we have an array that we have to iterate circularily, we can double that array to avid corner cases
Posted in Без рубрики
Leave a comment
Algo.Java.BinarySearch.For.Peaks
example 852. Peak Index in a Mountain Array
Posted in Без рубрики
Leave a comment
Algo.Java.SetBitMask
Let’s say we have smth in range [1..32] || [1..64], so we can write that smth to the corresponding bit like this example from leetcode
Posted in Без рубрики
Leave a comment