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

Algo.Java.PascalTriangle.ExampleOfDynamicProgramming

example

Posted in Без рубрики | Leave a comment

Algo.Java.Find2Mins.InO(n)

123

Posted in Без рубрики | Leave a comment

Algo.Java.RecursiveSlidingWindow

interesting approach

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.BinarySearch.Tip

from comments on leetcode

Posted in Без рубрики | Leave a comment

Algo.Java.BitManipulation.AnotherExample

example

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