Thursday, 7 May 2020
end parameter in print() | Python
Author May 07, 2020 Python No comments
Handling Exceptions | Python
Author May 07, 2020 Python No comments
Mathematical Operations on Set | Python
Author May 07, 2020 Python No comments
Nth term of GP | Python
Author May 07, 2020 Python No comments
Is Subsequence | Python
Author May 07, 2020 Leet Code, Python No comments
Code:
class Solution:
def isSubsequence(self, s: str, t: str) -> bool:
g=0;
for i in s:
if(i in t):
rs=t.index(i);
t=t[rs+1:];
else:
g+=1;
if(g==0):
return True;
else:
return False;
Set | Python
Author May 07, 2020 Python No comments
help & tab completion | Python
Author May 07, 2020 Python No comments
Tuesday, 5 May 2020
what are the difference between LIST , TUPLE and SET in python ?
Author May 05, 2020 Python No comments
The tuple, list, set, dictionary are trying to solve the most important problems in programming, called, storage of data and retrieval of stored data in a way that is both easy to use, to code and to read for the programmers.
The big problems are:
- space availability
- insertion
- searching by value or position
- updating
- make the operations faster for big/huge data sets
Tuple:
When you only store data that you aren't changing and don't need to do search by value as you know the position.
List:
When you store data that you changing, inserting if fast and don't need to do search/update by value as you know the position
Set:
When you store data that changes from times to time, but most importantly you need very fast search by value as you don't know position then you use sets.The search is very fast as the set is indexed in memory and fast binary search used. Inserting and deletion is slow.
Dictionary:
When you need fast search, data doesn't change often, few updates and inserts. Is just advanced set where you store a group of key and value and search by the key.
Monday, 4 May 2020
Largest Number At Least Twice of Others | Python
Author May 04, 2020 Python No comments
Ransom Note | Python
Author May 04, 2020 Python No comments
Code:
class Solution:
def canConstruct(self, ransomNote: str, magazine: str) -> bool:
g=0;
for i in ransomNote:
t=ransomNote.count(i);
s=magazine.count(i);
if(t>s):
g+=1;
if(g==0):
return True;
else:
return False;
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/piraw...
Search Insert Position | Python
Author May 04, 2020 Python No comments
Intersection of Two Arrays | Python
Author May 04, 2020 Python No comments
Code:
class Solution:
def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]:
output=[];
for i in nums1:
if(i in nums2 and i not in output):
output.append(i);
return output;
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/piraw...
Jewels and Stones | Python
Author May 04, 2020 Python No comments
If Expressions in Python
Author May 04, 2020 Python No comments
if else command | Python
https://www.youtube.com/watch?v=9GJWK...
Java code used in this video:
import java.util.*;
public class Hello {
public static void main(String args[])
{
Scanner obj=new Scanner(System.in);
int x=obj.nextInt();
String s=(x%2==0)?"Even":"Odd";
System.out.println(s);
}
}
Python for beginners:
https://www.youtube.com/watch?v=egq7Z...
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/piraw...
Separate 0’s and 1’s in an array | Python
Author May 04, 2020 Python No comments
https://www.youtube.com/watch?v=egq7Z..
Code:
l=int(input());
i=0;
m=[];
zeros=0;
while(i<l):
y=int(input());
if(y==0):
zeros+=1;
m.append(y);
i+=1;
i=0;
while(i<l):
if(i<zeros):
m[i]=0;
else:
m[i]=1;
i=i+1;
print(m);
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/piraw...
Find first set bit | Python
Author May 04, 2020 Python No comments
https://www.youtube.com/watch?v=egq7Z...
Code:
t=int(input());
i=0;
while(i<t):
a=int(input());
rs=bin(a)[2:];
y=list(rs);
y.reverse();
if('1' in y):
io=y.index('1');
print(io+1);
else:
print(0);
i=i+1;
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
https://www.facebook.com/groups/piraw...
Sunday, 3 May 2020
Integer and Decimal value in C#
Irawen May 03, 2020 C# No comments
- C# Integer Datatypes
- C# Decimal Datatypes
- We can only store whole number in them
- Whole Number mean number without any decimal such as 34, 204, 35 etc
- byte
- short
- int
- long
- Byte
- sbyte can store value between -128 and 127.
- byte can store value between 0 and 255.
- short can store between -32768 and 32767.
- ushort can store between 0 and 65535.
- int can stor value between -2147483648 and 2147483647.
- uint can store value between0 and 4294967295.
- long can store value between -9223372036854775808 and 9223372036854775807.
- ulong can store value between 0 and 18446744073709551615.
- General Syntax
DataType VariableName = value;
Examples
- sbyte scoreSbyte;
- byte ageByte;
- short studentIdShort = 5;
- int studentIdInteger = 43;
- We can store decimal numbers in them
- We can also store Whole number in them
- For example , 34.5, 204.3, 35.7 etc.
- float
- double
- float salaryFloat = 101.5f;
- decimal salaryDecimal = 101.25m;
- double salaryDouble = 101.5;
Saturday, 2 May 2020
List membership Testing using in | Part 8 | Python
Author May 02, 2020 Python No comments
Problem Link: Check If N and Its Double Exist: https://leetcode.com/problems/check-i... Python for beginners: https://www.youtube.com/watch?v=egq7Z...
Prime Number of Set Bits in Binary Representation | Python
Author May 02, 2020 Python No comments
Telegram: https://t.me/clcoding_python
https://www.facebook.com/pirawenpython/
Popular Posts
-
Deep learning is at the heart of modern Artificial Intelligence — powering technologies like chatbots, recommendation systems, image recog...
-
Explanation: ๐น Step 1: Create List x = [1,2,3] A list x is created ๐ Values inside list: 1, 2, 3 ๐น Step 2: Understand sum() Function su...
-
Explanation: ๐น Step 1: Create Tuple x = (1,[2,3]) x is a tuple (immutable) Inside tuple: 1 → integer [2,3] → mutable list ๐น Step 2: Appl...
-
Explanation: ๐น Step 1: Understand Boolean Values in Python In Python, booleans are treated like integers: True = 1 False = 0 ๐น Step 2: R...
-
When people think about data science, they often focus on tools like Python, machine learning models, or deep learning frameworks. But beh...
-
Code Expanation: ๐น Step 1: Create List x = [0, 1, 2] A list x is created ๐ Elements: 0, 1, 2 ๐น Step 2: Understand all() Function all(x)...
-
๐ Day 30/150 – Factorial of a Number in Python The factorial of a number means multiplying all positive integers from 1 to n . Example: 5...
-
๐ Day 34/150 – Armstrong Number in Python An Armstrong number is a number that is equal to the sum of its own digits raised to the power...
-
There are 4 modules in this course AI is not only for engineers. If you want your organization to become better at using AI, this is the c...
-
๐ Day 31/150 – Fibonacci Series in Python The Fibonacci series is a sequence where each number is the sum of the previous two numbers. ...

