Skip to content

Commit 8d2825b

Browse files
committed
new files
1 parent 809f7b2 commit 8d2825b

File tree

14 files changed

+75
-0
lines changed

14 files changed

+75
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.exe
2+
*.o
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#include <stdio.h>
2+
3+
int main()
4+
{
5+
/// C style I/O
6+
/**
7+
int -> %d
8+
long long int / long long -> %lld
9+
float -> %f
10+
array of characters -> %s
11+
double -> %lf
12+
13+
scanf() -> returns the number of variables it accepted
14+
printf() -> returns the number of characters it printed
15+
**/
16+
double radius;
17+
scanf("%lf", &radius);
18+
printf("%lf\n", radius);
19+
return 0;
20+
}
21+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
1 2
2+
2 3
3+
3 4
4+
4 5
5+
5 6
6+
5 6
7+
6 7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
4
2+
6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
This is leap year.
2+
3+
This is leap year.
4+
This is huluculu festival year.
5+
6+
This is huluculu festival year.
7+
8+
This is an ordinary year.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Class overview
2+
So, we had our very first class took place today. We discussed about what an online judge is and how does a problem statement look like.
3+
4+
Please visit following online judges and grasp some ideas before the next class! :)
5+
- `http://codeforces.com/`
6+
- `https://www.codechef.com/`
7+
- `https://atcoder.jp/`
8+
- `https://www.urionlinejudge.com.br/`
9+
- `https://vjudge.net/` (It is not actually a real online judge btw)
10+
11+
Problem(s) we checked in our first class:
12+
- `https://codeforces.com/problemset/problem/4/A`
13+
14+
Very basic problemset for practice for newbies. I am suggesting everyone to complete as much problem as you can from this list:
15+
- URI OJ: `https://www.urionlinejudge.com.br/judge/en/problems/index/1`
16+
17+
For those who want to sharpen their basic coding skills, are requested to go through one of these materials (basically whichever you prefer):
18+
- `https://www.eshikkha.net/`
19+
- `http://cpbook.subeen.com/`
20+
21+
One more important thing.
22+
I have provided almost `evreything` for a person in order to start their journey in programming. You just need to EXPLORE everything from possible places. Smart people always do find their own paths and this is the best way to achieve success.
23+
Yeah, you can always take help but you need to evaluate yourself too!
24+
25+
Cheers!
26+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### STL Cheat Sheets
2+
3+
https://www.hackerearth.com/practice/notes/standard-template-library/
4+
5+
https://github.com/gibsjose/cpp-cheat-sheet/blob/master/Data%20Structures%20and%20Algorithms.md

update.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
git pull
2+
git add -A
3+
git commit -m "new files"
4+
git push

0 commit comments

Comments
 (0)