Line that appears after typing —, ===, etc. and pressing enter is not a line, it’s page border. Hence, it cannot be selected for removal or editing. To remove line in Word, follow these steps. Steps to remove line in Word Step 1: Move cursor to immediately before line that needs to be removed Step 2: In the Home tab, click on the down arrow next to borders in paragraph… Read More »How to remove line in Word
Cyclic Binary String Problem Statement Given a binary string of length , you can cyclically shift this string any number of times. For example, consecutively applying cyclic shift operation to the binary string “1011010” you will get “0101101”, “1010110” and so on. Let X be the decimal representation of string . Find the greatest power of 2 with which X can be divisible with, if it can be divisible with… Read More »HackerRank Hackfest-2020
HackerRank Hackfest-2020
Microsoft Word automatically start new page by inserting page break (known as automatic page break) when texts flows out of page. However, it also provides user an option to insert page break (known as manual page break) which is useful in numerous cases (for e.g. inserting new chapter/ section/ subsection on new page). Ms Word manages automatic page break perfectly however for many reasons you may need to remove page… Read More »How to remove page break in Word
How to remove page break in Word
No matter how much we love Python, we all agree that Python is Slow!!! Why? Higher level language features like dynamically typing and Python interpreter which makes Python user friendly also make it sluggish. Other reasons for being slow includes Global Interpreter Lock popularly known as GIL. All these makes Python much slower compared to compiled lower level language like C/C++ and Fortran. Features like list comprehension speeds up Python… Read More »Speed up Python up to 1 Million times: Cython vs Numba
Speed up Python up to 1 Million times: Cython vs Numba
Here is the list of websites in India that are best in their category Ecommerce (Fashion, Electronics, Gifts, etc) Flipkart Amazon India Snapdeal Myntra Ajio Tata Cliq Chroma Aliexpress Shopclues Microsoft Store Dell Clovia Bata Gonoise Mia Tanishq Pantaloon Wildcraft Vijay Sales Samsung eStore Lenovo India Ferns & Petals Noise Travel and Hotels Cleartrip Goibibo Makemytrip (MMT) Expedia Agoda Oyo rooms Food and Grocery Dominos KFC Pizza Hut Swiggy Health,… Read More »Best Website by Purchase in India
Best Website by Purchase in India
Alt X (00B0), Alt Code (0176), Insert Symbol & the fastest Math Autocorrect (\degree) are four ways to insert degree symbol in Word.
Degree Symbol (ยฐ) in Word: 4 Methods
Index of DataFrame in Pandas is like an address, thatโs how any data point across the DataFrame or series can be accessed. This is similar to an index that you would see at the end of a book that helps you find content faster. The DataFrame in Python is labeled as two-dimensional data structures and comprises the main three components – Index, Columns and Data. Indexing in Pandas helps in… Read More »All About Index in Python Pandas
All About Index in Python Pandas
Tick symbol (๐ธ) also known as a check mark is a symbol for “Yes”. Sometimes tick in a box (โ) is preferred over tick symbol to denote yes or completion. In this blog we have covered, four different ways to insert tick and tick in box symbol in Microsoft Word. Ways to insert Tick in Box or Tick Symbol in Word Place your cursor where you want to insert the… Read More »Tick Symbol in Word (๐ธ & โ ): 4 different ways
Tick Symbol in Word (๐ธ & โ ): 4 different ways
Imagine that we have a list of numbers we wish to sort in ascending or descending order. For this, we need a sorting algorithm that puts an elements of an array in a certain order. Of many sorting algorithm, bubble sort algorithm is one of the simplest. Though it performs poorly in the real world is often used in educational purpose because of its simplicity. Bubble sort is an algorithm… Read More »Bubble Sort Algorithm in Python
Bubble Sort Algorithm in Python
Apart from selecting data from row/column labels or integer location, Pandas also has a very useful feature that allows selecting data based on boolean index, i.e. True or False. This is boolean indexing in Pandas. It is one of the most useful feature that quickly filters out useless data from dataframe. Believe me, it has lots of use cases and is helpful to select subset of data based on actual… Read More »Boolean Indexing in Pandas