Search Results for: array data type sum up
-
AOC 2022 – Day 5: Supply Stacks
You can read the full description for day 5 here. In summary for part 1, we have been provided a number of stacks, each stack may contain a number of […]
-
Lift Up Your Skills with 13 Simple Yet Powerful JavaScript Tricks
Just like many other languages, JavaScript has plenty of tips and tricks that let you accomplish either simple tasks or difficult tasks succinctly. There are a lot of tutorials about […]
-
Learn Java from Scratch: Variables and Data Types in Java (Comprehensive Guide)
Variables in Java Programming Variable is a name (or identifier) that is associated with a value that can be changed such as age, name, address, etc… The name uniquely identifies […]
-
Learn JavaScript Arrays from Scratch
In a few previous parts, we’ve been working and handling some core topics in JavaScript. We are already known that a variable is a container for value and store that […]
-
A Great Introduction to Data Types, Operators and Variables in JavaScript
In the previous article, we have learned the very first lesson on JavaScript that provides you the taste of this language, learn how to interact, run a JavaScript file with […]
-
Implementing wc command – Rust coding challenges
This is the second post of the Rust coding challenges series, in which we will learn computer science fundamentals and write some actual code to make usable programs. In this […]
-
Finding orders using Topological Sort
Topological sort is a fundamental algorithm to order elements in a directed graph; in this context, elements are often denoted as nodes, and the edges between them represent dependencies. In […]
-
Things I’ve learned from Effective Java – Part 1
In this series, I want to introduce one of the most-read books in Java programming: Effective Java. For the most part, this book focuses on the most fundamental classes and […]
-
An Introduction to Term Frequency – Inverse Document Frequency (tf-idf)
tf-idf is one of the most fundamental concepts in information retrieval. It’s the product of 2 statistics, the term frequency (tf), which is the numeric value representing how many times […]
-
Executing tasks with the Executor Framework in Java
Java offers us many ways to write multi-threading applications, at the early stage, we probably create a new thread for each task by manually extending the Thread class, this seems […]