Skip to content

Instantly share code, notes, and snippets.

View kaniket7209's full-sized avatar
🎯
Focusing

kaniket7209

🎯
Focusing
View GitHub Profile
@kaniket7209
kaniket7209 / code.cpp
Last active October 21, 2021 10:13
pepcoding.com 21/10/21 spreadOfInfection
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
class Edge
{
public:
int src = 0;
@kaniket7209
kaniket7209 / code.cpp
Last active October 23, 2021 11:19
pepcoding.com 21/10/21 shortestPathInWeights
#include <iostream>
#include <vector>
#include <queue>
#include <sstream>
using namespace std;
class Edge
{
@kaniket7209
kaniket7209 / code.cpp
Last active October 23, 2021 11:21
pepcoding.com 21/10/21 minimumWireRequiredToConnectAllPcs
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
class Edge
{
public:
int src = 0;
@kaniket7209
kaniket7209 / code.cpp
Last active October 21, 2021 10:15
pepcoding.com 21/10/21 orderOfCompilation
#include <iostream>
#include <stack>
#include <vector>
using namespace std;
class Edge
{
public:
@kaniket7209
kaniket7209 / code.cpp
Last active October 21, 2021 10:17
pepcoding.com 21/10/21 iterativeDepthFirstTraversal
#include <iostream>
#include <vector>
#include <stack>
#include <string>
using namespace std;
class Edge
{
public:
@kaniket7209
kaniket7209 / Count Digits In A Number
Last active October 22, 2021 06:54
Count Digits In A Number
Description:
This video is about counting the number of digits in a given number
Question Name:
Count Digits In A Number
Question Link:
https://pepcoding.com/resources/online-java-foundation/getting-started/count-digits-official/ojquestion
Question Statement:
@kaniket7209
kaniket7209 / Digits Of A Number
Created October 22, 2021 05:47
Digits Of A Number
Description:
Hello coder. Hope you are enjoying the journey so far.This video is about displaying the digits of a given number
Question Name:
Digits Of A Number
Question Statement:
1. 1. You've to display the digits of a number.
2. Take as input "n", the number for which digits have to be displayed.
3. Print the digits of the number line-wise.
@kaniket7209
kaniket7209 / Reverse A Number
Created October 22, 2021 06:05
Reverse A Number
Description:
Hello coder. Hope you are enjoying the journey so far. In this video we are going to discuss a very interesting problem which is REVERSE A NUMBER.
Question Name:
Reverse A Number
Question Link:
https://pepcoding.com/resources/online-java-foundation/getting-started/reverse-a-number-official/ojquestion
Question Statement:
@kaniket7209
kaniket7209 / Inverse Of A Number
Created October 22, 2021 06:26
Inverse Of A Number
Description:
Dear coders, today, we are going to solve an interesting problem named: Inverse a Number.
Question Name:
Inverse Of A Number
Question Link:
https://pepcoding.com/resources/online-java-foundation/getting-started/inverse-of-a-number-official/ojquestion
@kaniket7209
kaniket7209 / Rotate A Number
Created October 22, 2021 06:34
Rotate A Number
Description:
Dear coders, today, we are going to solve an interesting problem named: Rotate a Number.
Question Name:
Rotate A Number
Question Link:
https://pepcoding.com/resources/online-java-foundation/getting-started/rotate-a-number-official/ojquestion
Question Statement: