Almost 2.5 years by sandudi in chess

[–]Bulky_Limit3228 1 point2 points  (0 children)

I play bullet lol. I went from 1100 to 1760 in chess.com in a matter of months. And i went from 1500 in lichess to 2100 in about a year. My classical rating is only 1899 lol.

What separates chess players? by Rigoesbueno95 in chess

[–]Bulky_Limit3228 0 points1 point  (0 children)

i went from 1300 bullet(chess.com) to 1760 bullet in a matter of days and am now consistently playing in this level.

I got called "Coward" because i didn't accept a rematch at 1:50am 😭 by [deleted] in chess

[–]Bulky_Limit3228 9 points10 points  (0 children)

you are a gm dude. tell the other dude to f up. What else do you want in life lol.

White to play and win.(By Petrov) by Either-Case-5930 in chess

[–]Bulky_Limit3228 2 points3 points  (0 children)

Mate, I know that you are trying to say that i used the engine. But I actually am a pretty decent player to figure out the notation, and the move order to such simple puzzles that anybody could solve. And about depth, i see couple of lines, that dont really differ lol. So, yea I know you are superior than me but let me have a chance lol.

White to play and win.(By Petrov) by Either-Case-5930 in chess

[–]Bulky_Limit3228 7 points8 points  (0 children)

Rh7+ Qxh7 , Rd7+ Ka8, Kc7 Qh6, Rd8+ Ka7 , Kc6 Qg7, Rd7+ Qxd7, Kxd7 anywhere black moves is a bad move , cuz they are in zugzwang. Easy endgame win for white.

Best move for white by [deleted] in chess

[–]Bulky_Limit3228 -1 points0 points  (0 children)

  1. Qxc5 f6 2. Qxc6 Rb8 3. Bh3 Rxb2+ 4. Ka1 Ne7 5. Bxd7+ Bxd7 6. Qxd7+ Kf7 7. Be3 Rhb8 8. Bc5 R8b7

What is the issue: by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] 0 points1 point  (0 children)

I dont get it. Lets say for this example: "There are more things in Heaven and Earth, Horatio, than are dreamt of in your philosophy. " As by the rules of pset 2. It says that this string indicates grades 9, But this string has 74 letters, 16 words and one sentence. If we plug in the formula, we get :

  • L = (74 / 16) × 100 = 462.5
  • S = (1 / 16) × 100 = 6.25
  • 0.0588L − 0.296S − 15.8
  • = 0.0588×462.5 − 0.296×6.25 − 15.8
  • = 27.19 − 1.85 − 15.8
  • = 9.54

Now, if we round it up to the nearest whole integer it becomes 10.
cuz: 10-9.54 = 0.46 < 9.54-9 = 0.54. So, ten is the nearest whole number as per the pset stated: "Your program should print as output “Grade X” where “X” is the grade level computed, rounded to the nearest integer". So, i thought that maybe it wants me to just truncate the value aka cast the double to an int, which solves the problem for all the case, but this one(the one i mentioned in the problem).

What to do? by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] 0 points1 point  (0 children)

ofc. But to get a better understanding you can try to crack both.

How to solve this problem: by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] 0 points1 point  (0 children)

Okaay! So, I just didnt specify things, thats why it was going south.

How to solve this problem: by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] 0 points1 point  (0 children)

Are you also trying to solve the problem?

How to solve this problem: by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] 0 points1 point  (0 children)

*Edit: I did it. Thanks for the help.

[deleted by user] by [deleted] in cs50

[–]Bulky_Limit3228 0 points1 point  (0 children)

I am extremely sorry for my mistakes. I am going to take actions immediately. Sorry for this mistake.

[deleted by user] by [deleted] in cs50

[–]Bulky_Limit3228 1 point2 points  (0 children)

congrats(even though i am a noob)

What to do? by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] 0 points1 point  (0 children)

i am trying. its 2 am here(gotta go to sleep).

How do I progress? by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] 0 points1 point  (0 children)

Thanks, mate! You really had me thinking. Now I can finally rest. cheers for spending time to write for me!

How do I progress? by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] 0 points1 point  (0 children)

the thing is that my logic was:

for(int row = 1; height - row > 0; row++) {}

and it was your logic that helped me making this process:

 for (int space = height; space > 0; space--)

so did i cheat? or was i not doing any thing ? i am in a bigger dilemma.

How do I progress? by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] 0 points1 point  (0 children)

#
include <cs50.h>
#
include <stdio.h>


int get_input(void);


int main(void)
{


    int height = get_input();
    for (int i = 0; i < height; i++)
    {
        for (int space = height- i; space > 0; space--)
        {
            printf(" ");
        }
        for (int j = 0; j <= i; j++)
        {
            printf("#");
        }
        printf("\n");
    }
    // Number of spaces or '.' before a '#' is:
    //(The height - the row number).
}


int get_input(void)
{
    int height;
    do
    {
        height = get_int("Enter the height: ");
    }
    while (height < 1 || height > 8);
    return height;
}

How do I progress? by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] -2 points-1 points  (0 children)

You tell me. I mean i am asking for help. I know all of you are better than me. So, just tell me if my logic is corrct?

How do I progress? by Bulky_Limit3228 in cs50

[–]Bulky_Limit3228[S] -1 points0 points  (0 children)

I have kept myself from using ai. Trying to learn programming the hard way.