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
Python program to split a given list into Even and Odd list based on the parity of the numbers

Problem Statement Given a python list consisting of integers, based on their parity, separate them into even and odd list. For example: Input: list = [1,4,6,87] Output: even_list = [4,6] , odd_list = [1,87] The problem statement is pretty clear – we have a list of integers and we need to separate them into two…

https://thecodingbot.com/python-program-to-split-a-given-list-into-even-and-odd-list-based-on-the-parity-of-the-numbers/
Time and Space complexity analysis of Python’s list.reverse method

Overview In this article, we will explicitly focus on the Time and Space Complexity of Python List’s reverse() method. If you wish to read a complete detailed tutorial on the method then you can find it here. Before moving forward, let’s quickly recall what does the reverse() function do when applied to a list. list.reverse list.reverse() is…

https://thecodingbot.com/time-and-space-complexity-analysis-of-pythons-list-reverse-method/
Channel name was changed to «Computer programming»
Leetcode – 771. Jewels and Stones

Problem Statement You’re given strings J representing the types of stones that are jewels, and S representing the stones you have.  Each character in S is a type of stone you have.  You want to know how many of the stones you have are also jewels. The letters in J are guaranteed distinct, and all…

https://thecodingbot.com/leetcode-771-jewels-and-stones/
How to print a statement in C/C++ without a semicolon(;) – Different methods

Problem Statement The task is to print a statement, say “Hello World“, without using a semicolon in C/C++. Solution To be honest, this isn’t a serious programming question, but, it is possible that you might face this question in an interview someday. It is a kind of puzzle problem. There are many different ways to…

https://thecodingbot.com/how-to-print-a-statement-in-c-c-without-a-semicolon-different-methods/
Insert a Node at the beginning of a Linked List

Problem Statement Given a linked list(can be an empty list), add a node at the beginning of it. For example: Linked list before insertion = 4->3->5->NULL Input Integer = 51 Linked list after insertion = 51->4->3->5->NULL Linked list before insertion = 40->13->95->NULL Input Integer = 141 Linked list after insertion = 141->40->13->95->NULL Solution This is…

https://thecodingbot.com/insert-a-node-at-the-beginning-of-a-linked-list/
Python ord() function and its application

In Python, ord() is a built-in function which returns an integer representing the Unicode point value of a character. Before discussing anything else, it is important to first know what the Unicode encoding is. Unicode Unicode is the encoding type or a standard which contains the character set of all the languages that exist, all…

https://thecodingbot.com/python-ord-function-and-its-application/
How to convert a string to Uppercase or Lowercase in C++

Problem Statement Given a string, you need to change the case of the string. If the question demands the conversion into uppercase, then change the case to uppercase, else convert the string into lowercase. Solution Approach 1 – Using the iteration In this approach, we will iterate the string and check the case of each…

https://thecodingbot.com/how-to-convert-a-string-to-uppercase-or-lowercase-in-c/
Channel name was changed to «Computer Programming»
Python’s dictionary len() method

len() is a built-in function in python which returns the number of items in an object. It can be used with a sequence(list, tuple, string etc) or a collection (like dictionary, set etc). However, this tutorial shall only focus its use with a dictionary. For complete tutorial on built-in len(), visit: Python’s built-in len() method…

https://thecodingbot.com/pythons-len-on-a-dictionary/
Welcome to the official channel of thecodingbot.com. We mainly post about Technical Interviews Preparation, Machine Learning, Data Structures, Data Science, Algorithms, Big Data, Best practices, and other random stuff.

What will you get access to by joining this channel?

1️⃣ Quality Tutorials on different topics.
2️⃣ Best Curated resources.
3️⃣ Good open source projects link.
4️⃣ A bed time read which will help you to grow.
5️⃣ Occassionaly, some books (If they are open sourced).
6️⃣ Interview material for different companies.

We do have a schedule of posting over the week.

Monday - Machine Learning(Data Science, Libraries and Statistics)
Tuesday - Full Stack Developement(Django, Bootstrap, Node etc)
Wednesday - Data Structures( From basic to Advanced Data Structures)
Thursday - Algorithms
Friday - C and C++ ( Mostly about features, good articles, best practices and most used built-in functions of the language)
Saturday - Python ( Python features, good articles, best practices and most used built-in methods of the language)
Sunday - Miscellaneous Stuff ( Some good random post from internet related to computer science)

What we expect from you?

A simple help. Although, we write with all our heart, there are times we commit some mistakes too. Please help us to identify them so that we can correct it. If you find anything wrong/ incorrect/typo in any of our articles, then mail us to thecodingbot@gmail.com, or, leave your comment under the article.

Thanks you and I hope you achieve great heights.
Computer Programming pinned «Welcome to the official channel of thecodingbot.com. We mainly post about Technical Interviews Preparation, Machine Learning, Data Structures, Data Science, Algorithms, Big Data, Best practices, and other random stuff. What will you get access to by joining…»
Computer Programming
An_Introduction_to_Statistical_Learning.pdf
Excellent Book, An Introduction to Statistical Learning provides an accessible overview of the field of statistical learning, an essential toolset for making sense of the vast and complex data sets that have emerged in fields ranging from biology to finance to marketing to astrophysics in the past twenty years. This book presents some of the most important modeling and prediction techniques, along with relevant applications. Topics include linear regression, classification, resampling methods, shrinkage approaches, tree-based methods, support vector machines, clustering, and more. Color graphics and real-world examples are used to illustrate the methods presented. Since the goal of this textbook is to facilitate the use of these statistical learning techniques by practitioners in science, industry, and other fields, each chapter contains a tutorial on implementing the analyses and methods presented in R, an extremely popular open source statistical software platform.
Print inverted hollow star triangle pattern in C++

Problem Statement Given the number of rows, form an inverted hollow triangle pattern made up of stars(asterisks)”*”. For Example Input: 5 Output: Inverted hollow star triangle pattern Solution This problem is a little tricky in comparison to its sister problem(printing a hollow star triangle). However, we can solve this easily by making a few changes…

https://thecodingbot.com/print-inverted-hollow-star-triangle-pattern-in-c/
#Book 2
Building Restful APIs using Django and Django Rest rest framework. The book is an easy guide for beginners. It is an extension of the 'poll' app from Django official tutorial into an API. Download link: bit.ly/buildingapiswithdjangorestframework