contents: grammar / consistency fixes for algo sites (#599)

This commit is contained in:
Michael Sparre
2023-08-02 17:25:53 -07:00
committed by GitHub
parent 2666344b36
commit 9dbec74a21
7 changed files with 22 additions and 22 deletions

View File

@@ -21,7 +21,7 @@ toc_max_heading_level: 2
## Introduction
Knowledge of binary number system and bit manipulation is less important in coding interviews as most Software Engineers do not have to deal with bits, which is more commonly used when dealing with lower level systems and programming languages. They are still asked sometimes, so you should at least still know how to convert a number from decimal form into binary form, and vice versa, in your chosen programming language.
Knowledge of binary number system and bit manipulation is less important in coding interviews as most Software Engineers do not have to deal with bits, which is more commonly used when dealing with lower level systems and programming languages. They are still asked sometimes, so you should at least still know how to convert a number from decimal form into binary form (and vice versa) in your chosen programming language.
## Learning resources