790. Domino and Tromino Tiling

790. Domino and Tromino Tiling
790. Domino and Tromino TilingDifficulty: MediumTopics: Dynamic ProgrammingYou have two types of tiles: a 2 x 1 domino shape and a tromino shape. You may rotate these shapes. Given an integer n, retur...
0 Read More

Dica de TI: O que são constantes?

Dica de TI será uma série de posts com conteúdo sobre tecnologia. São posts curtos explicando alguns conceitos.Ao contrário das variáveis, que podemos alterar o valor conforme a necessidade do a...
0 Read More

Terminology in Algorithmic Complexity

Good day everyone! I am conducting a little survey about the intuition and practical applications of algorithmic complexity terminology - if you've a minute (literally) to spare, it would mean a great...
0 Read More

Code Theory #1

RESTful APIs, OpenAPI, and GraphQL. asyncio 1️⃣ Core Concepts Recap (Very Brief) pre_save, post_save, pre_delete, post_deleteconnect(), disconnect(), @receiverSynchronous vs asynchronous signals (...
0 Read More

Sorting Algorithm: Selection

Selection sort algorithm makes sure that it selects the smallest (or largest, depending on the implementation) element from the unsorted portion of the array and moves it to its correct position from ...
0 Read More

3356. Zero Array Transformation II

3356. Zero Array Transformation IIDifficulty: MediumTopics: Array, Binary Search, Prefix SumYou are given an integer array nums of length n and a 2D array queries where queries[i] = [li, ri, vali].Eac...
0 Read More