-
MY PROJECTS
-
Recent Posts
- Reading.CleanArchitecture.BusinessRules
- Reading.CleanArchitecture.PolicyAndLevel
- Reading.CleanArchitecture.Boundaries
- Reading.CleanArchitecture.Independence
- Reading.CleanArchitecture.ArchitectureDefinition
- Algo.Java.CheckPrimeNumber
- Algo.Java.DetectPatternInArray
- Algo.Java.Regex.Tips
- Algo.Java.925. Long Pressed Name.TwoPointers
- Algo.Java.MaxRepeatingSubString
- Algo.Java.DayOfTheYear
- Algo.Java.Number of Days Between Two Dates
- Algo.Java.GCDandLCM
- Algo.Java.ConvertBinaryToInt.Theory
- Algo.Java.prefixesDivBy5
- Algo.Java.ShiftArray.ClosestTargetInCircularArray
- Algo.Java.ShiftArray
- Algo.Java.PowerOfTreeSet
- Algo.Java.ShiftArrayToTheRight2
- Java.Algo.RotateMatrix.90.Clockwise
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: Без рубрики
Algo.Java.DayOfTheYear
// https://leetcode.com/problems/day-of-the-year/description/
Posted in Без рубрики
Leave a comment
Algo.Java.Number of Days Between Two Dates
// https://leetcode.com/problems/number-of-days-between-two-dates/description/
Posted in Без рубрики
Leave a comment
Algo.Java.GCDandLCM
GCD is greatest common divisor // naive approach // more elegant way // least common multiple
Posted in Без рубрики
Leave a comment
Algo.Java.ConvertBinaryToInt.Theory
To convert a binary number to an integer mathematically, you can use the following formula: Formula Given a binary number bbb with digits bk,bk−1,…,b1,b0b_k, b_{k-1}, …, b_1, b_0bk,bk−1,…,b1,b0, where bib_ibi is the bit at position iii (0 for least significant … Continue reading
Posted in Без рубрики
Leave a comment
Algo.Java.prefixesDivBy5
// https://leetcode.com/problems/binary-prefix-divisible-by-5/description/ Also Binary Input as Array If the binary is given as an array of integers (e.g., [1, 0, 1, 1]):
Posted in Без рубрики
Leave a comment
Algo.Java.ShiftArray.ClosestTargetInCircularArray
// https://leetcode.com/problems/shortest-distance-to-target-string-in-a-circular-array/
Posted in Без рубрики
Leave a comment
Algo.Java.PowerOfTreeSet
// https://leetcode.com/problems/second-largest-digit-in-a-string/description/
Posted in Без рубрики
Comments Off on Algo.Java.PowerOfTreeSet
Algo.Java.ShiftArrayToTheRight2
another example with shifting of array
Posted in Без рубрики
Comments Off on Algo.Java.ShiftArrayToTheRight2
Java.Algo.RotateMatrix.90.Clockwise
/** * https://leetcode.com/problems/determine-whether-matrix-can-be-obtained-by-rotation/description/ */ to rotate matrix 90 degrees clockwise we have to transpose and flip it Example
Posted in Без рубрики
Comments Off on Java.Algo.RotateMatrix.90.Clockwise