EAEmad Almajdalawiinemad-almajdalawi.hashnode.dev·May 21, 2022 · 3 min readHashingIntro In the digital world, encryption and authentication are critical. I realize that hashing is a huge topic, so here is a fast overview. A hashing algorithm is a mathematical algorithm that converts input data to an output string (hashing key) of ...00
EAEmad Almajdalawiinemad-almajdalawi.hashnode.dev·May 19, 2022 · 2 min readTensorFlow installation errorIntroduction During one of my projects, I ran across an issue installing the TensorFlow package. I tried my hardest but was unsuccessful at the beginning. What is TensorFlow? Google TensorFlow is an end-to-end platform that makes it easy for you to b...00
EAEmad Almajdalawiinemad-almajdalawi.hashnode.dev·May 18, 2022 · 3 min readInsertion SortIntro: Insertion sort is a simple array sorting algorithm. The array is virtually split into a sorted and an unsorted part. Values from the unsorted part are picked and placed at the correct position in the sorted part. The function will compare two ...00
EAEmad Almajdalawiinemad-almajdalawi.hashnode.dev·May 18, 2022 · 3 min readMerge SortIntro: Merge sort is a simple array sorting algorithm. It works by dividing the array into two parts and sorting them recursively. The array is divided into two parts until it is of size 1. Then the two parts are merged. The merge step is done by com...00