Valentine Gatwiri

Valentine Gatwiri is an undergraduate majoring in Computer Science. An innovative software developer building applications that run on the internet. She writes React, JavaScript, Node.js, and Kotlin.
Author Insights

4

0

0
Valentine Gatwiri is an undergraduate majoring in Computer Science. An innovative software developer building applications that run on the internet. She writes React, JavaScript, Node.js, and Kotlin.
4
0
0
Jul 4, 2022
Tabulation is one of the methods used when solving dynamic programming problems. You start by filling up a table and then figure out the solution to the problem based on the result on the table.
Mar 3, 2022
Memoization is an enhancement procedure used to speed up computer programs by keeping the values of distinct function calls and returning the stored input when the same function is invoked again.
Dec 20, 2021
A React Component is a small, reusable code responsible for rendering HTML. In React, we can define a component as a class or a function.
Nov 3, 2021
In a data-driven application, the data that is processed in the application is governed by the application flow. The data-set input may change your applications behavior. This means data influence your...