Computer Programming
440 subscribers
6 files
231 links
We mainly post about Tech Interview Prep, Machine Learning, Full Stack, Data Structures, Algorithms & Programming Languages.

Please check the pinned message and invite your friends to this channel. Sharing is Caring πŸ’•
Download Telegram
Computer Programming
https://www.interviewbit.com/courses/programming/topics/time-complexity/
Practice time complexity analysis questions here for your next interview
Time complexity analysis cheatsheet: http://bigocheatsheet.com/
Proof: Why the number of digits in an integer N equals ?

Overview In this short but important tutorial, we will discuss why the number of digits in an integer N is equal to . This well-known formula is used many times to optimize the runtime of…

https://thecodingbot.com/proof-why-the-number-of-digits-in-an-integer-n-equals-latex-lfloor-log_10-n-rfloor-1-latex/
How to print to stderr in Python?

Overview print() is a built-in method in python which by default writes to the python’s stdout file object. However, we can redefine the print() function to redirect the output to stderr rather than stdout. print()…

https://thecodingbot.com/how-to-print-to-stderr-in-python/
How to get the number of rows and columns in a two-dimensional array?

Overview In this tutorial, We will see how we can get the number of rows and columns in a two-dimensional array in c++. Given the array A[m][n], the rows are m and the columns are…

https://thecodingbot.com/how-to-get-the-number-of-rows-and-columns-in-a-two-dimensional-array/
Liking this channel?
Anonymous Poll
82%
Yes
18%
No
How to increment/decrement a variable in bash(shell scripting)?

Overview In this tutorial, we will see how we can increment/decrement a variable value in bash(shell scripting). There are a couple of ways to modify a variable value, we will try to cover them all…

https://thecodingbot.com/how-to-increment-decrement-a-variable-in-bashshell-scripting/
What is -eq in a bash(shell script)?

Overview -eq in bash(shell scripting) is a binary comparison operator which is used for arithmetic value comparison(i.e comparison of two integers). The general syntax is: INTEGER_1 -eq INTEGER_2 # INTEGER_1 is equal to INTEGER_2 Here,…

https://thecodingbot.com/what-is-eq-in-a-bashshell-script/
Different type of looping in Python

Overview In programming, a loop is a sequence of instructions that are continuously repeated until certain condition(s) is(are) met. The condition is often known as the terminating condition. In python, the Loops are broadly classified…

https://thecodingbot.com/different-type-of-looping-in-python/
Loops in Bash(Shell scripting)

Introduction In programming, a loop is a sequence of instructions that are continuously repeated till the certain condition(s) is(are) met. The condition is often known as the terminating condition. In bash scripting, we have different loop formats which…

https://thecodingbot.com/loops-in-bashshell-scripting/