
Get clients in any niche!
Delegate the launch of advertising to us — for free
Learn more
29.0

Advertising on the Telegram channel «Coding Interview»
5.0
31
Computer science
Language:
English
1.4K
10
Share
Add to favorite
Buy advertising in this channel
Placement Format:
keyboard_arrow_down
- 1/24
- 2/48
- 3/72
- Native
- 7 days
- Forwards
1 hour in the top / 24 hours in the feed
Quantity
%keyboard_arrow_down
- 1
- 2
- 3
- 4
- 5
- 8
- 10
- 15
Advertising publication cost
local_activity
$30.00$30.00local_mall
0.0%
Remaining at this price:0
Recent Channel Posts
imageImage preview is unavailable
Software Engineer: C++ C# Java, Python, JavaScript
Web Dev: HTML, CSS, JavaScript, NodeJS
Game Dev: Unity, Unreal, Java
App Dev: Flutter, Objective C, Java, Swift, Kotlin, React
Cyber Security: Python, Linux, Networking
AI & Data Science - Julia, Haskell
585
13:48
27.01.2025
imageImage preview is unavailable
🔥 $10.000 WITH LISA!
Lisa earned $200,000 in a month, and now it’s YOUR TURN!
She’s made trading SO SIMPLE that anyone can do it.
❗️Just copy her signals every day
❗️Follow her trades step by step
❗️Earn $1,000+ in your first week – GUARANTEED!
🚨 BONUS: Lisa is giving away $10,000 to her subscribers!
Don’t miss this once-in-a-lifetime opportunity. Free access for the first 500 people only!
👉 CLICK HERE TO JOIN NOW 👈
664
12:39
27.01.2025
Easy Python scenarios for everyday data tasks
Scenario 1: Data Cleaning
Question:
You have a DataFrame containing product prices with columns Product and Price. Some of the prices are stored as strings with a dollar sign, like $10. Write a Python function to convert the prices to float.
Answer:
import pandas as pd
data = {
'Product': ['A', 'B', 'C', 'D'],
'Price': ['$10', '$20', '$30', '$40']
}
df = pd.DataFrame(data)
def clean_prices(df):
df['Price'] = df['Price'].str.replace('$', '').astype(float)
return df
cleaned_df = clean_prices(df)
print(cleaned_df)
Scenario 2: Basic Aggregation
Question:
You have a DataFrame containing sales data with columns Region and Sales. Write a Python function to calculate the total sales for each region.
Answer:
import pandas as pd
data = {
'Region': ['North', 'South', 'East', 'West', 'North', 'South', 'East', 'West'],
'Sales': [100, 200, 150, 250, 300, 100, 200, 150]
}
df = pd.DataFrame(data)
def total_sales_per_region(df):
total_sales = df.groupby('Region')['Sales'].sum().reset_index()
return total_sales
total_sales = total_sales_per_region(df)
print(total_sales)
Scenario 3: Filtering Data
Question:
You have a DataFrame containing customer data with columns ‘CustomerID’, Name, and Age. Write a Python function to filter out customers who are younger than 18 years old.
Answer:
import pandas as pd
data = {
'CustomerID': [1, 2, 3, 4, 5],
'Name': ['Alice', 'Bob', 'Charlie', 'David', 'Eve'],
'Age': [17, 22, 15, 35, 40]
}
df = pd.DataFrame(data)
def filter_customers(df):
filtered_df = df[df['Age'] >= 18]
return filtered_df
filtered_customers = filter_customers(df)
print(filtered_customers)
724
08:12
27.01.2025
imageImage preview is unavailable
𝗢𝗿𝗮𝗰𝗹𝗲 𝗦𝗤𝗟 𝗙𝗥𝗘𝗘 𝗖𝗲𝗿𝘁𝗶𝗳𝗶𝗰𝗮𝘁𝗶𝗼𝗻 𝗖𝗼𝘂𝗿𝘀𝗲😍
Learn SQL in this FREE 12-part boot camp. It will help you get started with Oracle Database and SQL.
Complete the course to get your free certificate.
𝐋𝐢𝐧𝐤 👇:-
https://pdlink.in/3P75GaB
Enroll For FREE & Get Certified🎓
693
04:37
27.01.2025
Data Structures and Algorithms in Real Life examples
Array :
2D arrays (matrices) are mainly used in Image Processing.
RGB image uses a 3D matrix.
2D arrays are also used in Game Design like Sudoku, Chess.
The Leader Board of game or coding contest.
Stack :
Used in backtracking, check valid parenthesis in an expression.
Evaluating Infix and Postfix expressions.
Used in Recursive function calls to store function calls and their results.
Undo and Redo operations in word processors like MS-Word, and Notepad.
Browsing history of visited websites.
Call history/log in mobile phones.
Java Virtual Machine uses a stack to store immediate calculation results.
Queue:
Windows operating system uses a circular queue to switch between different applications.
Used in First Come First Serve job/CPU scheduling algorithm which follows FIFO order.
All the requests are queued for the server to respond.
Priority Queue :
A priority queue is used in priority scheduling algorithm and interrupt handling in OS.
Used in Huffman Coding in compression algorithms.
Linked List:
Previous and Next Page in Web Browser.
Songs in the music player are linked to the previous and next songs using doubly linked list.
Next and previous images in a phone gallery.
Multiple Applications running on a PC uses circular linked list.
Used for the implementation of stacks, queues, trees, and graphs.
Graph :
In Facebook, LinkedIn and other social networking sites, users are considered to be the vertices and the edge between them indicates that they are connected.
Facebook’s Graph API and Google’s Knowledge API are the best examples of grpah.
Google Maps, Yahoo Maps, Apple Maps uses graph to show the shortest path using Breadth First Search (BFS).
Used in HTML DOM and React Virtual DOM.
Tree :
Representation structure in File Explorer. (Folders and Subfolders) uses N-ary Tree.
Auto-suggestions when you google something using Trie.
Used in decision-based machine learning algorithms.
Used in Backtracking to maintain the state-space tree.
A binary tree is used in database indexing to store and retrieve data in an efficient manner.
To implement Heap data structure.
Binary Search Trees: (BST) can be used in sorting algorithms.
Dijkstra Algorithm :
This algorithm is used to find the shortest path between two vertices in a graph in such a way that the sum of weights between the edges is minimum.
Prims Algorithm :
It is a greedy algorithm to obtain a minimum spanning tree.
1063
07:13
26.01.2025
imageImage preview is unavailable
Best Resources for Tech Interviews
894
06:11
26.01.2025
𝗗𝗮𝘁𝗮 𝗔𝗻𝗮𝗹𝘆𝘁𝗶𝗰𝘀/𝗗𝗮𝘁𝗮 𝗦𝗰𝗶𝗲𝗻𝗰𝗲 𝗦𝘂𝗺𝗺𝗲𝗿 𝗜𝗻𝘁𝗲𝗿𝗻𝘀𝗵𝗶𝗽 𝟮𝟬𝟮𝟱😍
Company Name:- Siemens Healthineers
Position: Data Analytics/Data Science Intern
Duration: 10-12 weeks
Start Dates: June 2nd or June 16th, 2025
Work Type: Hybrid (in-office & remote)
𝗔𝗽𝗽𝗹𝘆 𝗡𝗼𝘄👇 :-
https://pdlink.in/42s5Dhh
Apply before the link expires
937
04:56
26.01.2025
imageImage preview is unavailable
😂
1313
14:32
25.01.2025
imageImage preview is unavailable
Types of Data Structures 👆
1225
06:39
25.01.2025
imageImage preview is unavailable
𝗜𝗻𝗳𝗼𝘀𝘆𝘀 𝗙𝗥𝗘𝗘 𝗖𝗲𝗿𝘁𝗶𝗳𝗶𝗰𝗮𝘁𝗶𝗼𝗻 𝗖𝗼𝘂𝗿𝘀𝗲𝘀😍
Looking to stand out in today’s competitive job market?
This FREE certification series from Infosys Springboard offers everything you need to Gain industry-relevant skills.
𝐋𝐢𝐧𝐤 👇:-
https://pdlink.in/42sZl0R
Enroll For FREE & Get Certified🎓
1220
05:21
25.01.2025
close
Specials
Special discount offer

Channels
16
496K
lock_outline
CPM
lock_outline$$ 345.47
$$ 172.73
-50%
Reviews channel
keyboard_arrow_down
- Added: Newest first
- Added: Oldest first
- Rating: High to low
- Rating: Low to high
5.0
2 reviews over 6 months
Excellent (100%) In the last 6 months
c
**ffeenold@******.io
On the service since June 2022
07.11.202414:16
5
Everything is fine. Thank you!
Show more
New items
Channel statistics
Rating
29.0
Rating reviews
5.0
Сhannel Rating
82
Followers:
40.3K
APV
lock_outline
ER
1.8%
Posts per day:
0.0
CPM
lock_outlineSelected
0
channels for:$0.00
Followers:
0
Views:
lock_outline
Add to CartBuy for:$0.00
Комментарий