|
2 | 2 | Let's make this repo an experience sharing BLOG-like-thing where we will share our experiences of getting stucked or encountering errors as beginner (new programmer) (self solved or solved by frnd in inbox)
|
3 | 3 |
|
4 | 4 |
|
5 |
| -## sharafat |
6 |
| -- At first I just used to read and read without practicing. Which is definitely a bad habit! |
7 |
| -- How are you supposed to learn a software if you're afraid of an unknown button? This philosophy of mine both helped and got me into a tons of troubles. |
8 |
| - |
9 |
| -## IbnulAbrarShahriarSeam |
10 |
| -- Read the problem statement carefully. |
11 |
| -- Try to find a mathematical solution rather than using a loop. Loops take a huge amount of time and memory to execute. A mathematical solution is almost always more efficient. |
12 |
| -- If you are working with an integer-type variable, try not to use something that returns double or floating-point values (e.g., pow()). As it may result in unexpected behavior. |
13 |
| - |
14 | 5 | ## KaziRifatMorshed
|
15 | 6 | - STOP USING white-spaces (or simply, space) while naming a folder or file. It just looks nice and human readable but the terminal feels uncomfortable if it encounters a path containing white-spaces. IT IS A BAD PRACTICE, STOP DOING IT FROM RIGHT NOW.
|
16 | 7 | - `%0.0f` is a good idea to remove after-point part of the floating number(from showing/printing (by the console)). Actually it is a way of defining how many blocks/spaces/digits you want to show. 0.0 means there will be no after point part. 0.2 means there will be 2 digits after point-sign. `%3.4f` means there will be 3 digits before the point and 4 digits after the point.
|
@@ -94,6 +85,15 @@ Let's make this repo an experience sharing BLOG-like-thing where we will share o
|
94 | 85 | - Generate random number `int r = rand() % 20;` and use MODULO(%) for overflow safety purpose.
|
95 | 86 | - if `f=10.5` then `printf(“%d\n”,(int)f);` will output `10` but `printf(“%d\n”, f);` will output ZERO.
|
96 | 87 |
|
| 88 | +## sharafat |
| 89 | +- At first I just used to read and read without practicing. Which is definitely a bad habit! |
| 90 | +- How are you supposed to learn a software if you're afraid of an unknown button? This philosophy of mine both helped and got me into a tons of troubles. |
| 91 | + |
| 92 | +## IbnulAbrarShahriarSeam |
| 93 | +- Read the problem statement carefully. |
| 94 | +- Try to find a mathematical solution rather than using a loop. Loops take a huge amount of time and memory to execute. A mathematical solution is almost always more efficient. |
| 95 | +- If you are working with an integer-type variable, try not to use something that returns double or floating-point values (e.g., pow()). As it may result in unexpected behavior. |
| 96 | + |
97 | 97 | # Contribution
|
98 | 98 |
|
99 | 99 | Let the power of words weave its magic, igniting sparks of inspiration and fostering a vibrant community united by the beauty of language. Join us on this remarkable journey of sharing, connecting, and celebrating the extraordinary impact of words in our lives.
|
|
0 commit comments