From ee986bf8a71269473c92796ee7fec6872f89e5d7 Mon Sep 17 00:00:00 2001 From: VeraCologne Date: Mon, 21 Jan 2019 18:57:40 +0100 Subject: [PATCH] fix sentence structure (#27676) added some commas for better readability and changed the structure of a sentence --- .../how-to-start-when-you-are-stuck/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guide/english/miscellaneous/how-to-start-when-you-are-stuck/index.md b/guide/english/miscellaneous/how-to-start-when-you-are-stuck/index.md index d7c3cceb44..c31d65d773 100644 --- a/guide/english/miscellaneous/how-to-start-when-you-are-stuck/index.md +++ b/guide/english/miscellaneous/how-to-start-when-you-are-stuck/index.md @@ -1,18 +1,18 @@ --- title: How to Start When You Are Stuck --- -You are a camper just like me, you get to an exercise and you get stuck ... just like anyone else. You have no idea how to start, you stare at your editor and you think you must have a problem, surely you are not developer material ... well you're wrong! Perhaps you are just like me? I'm a visual person, I like a drawing better than a text. Everytime the same problem put down in a schema makes more sense to me than if you gave me a text. So ... what do I do when I have problems solving/understanding an exercise? I start to draw. After I have my drawing in place if I need more to translate it to code I can also write it in pseudocode. After that transposing it to code should not be very hard. +You are a camper just like me, you get to an exercise and you get stuck ... just like anyone else. You have no idea how to start, you stare at your editor and you think you must have a problem, surely you are not developer material ... well you're wrong! Perhaps you are just like me? I'm a visual person, I like a drawing better than a text. Everytime the same problem put down in a schema makes more sense to me than if you gave me a text. So ... what do I do when I have problems solving/understanding an exercise? I start to draw. After I have my drawing in place, if I need more to translate it to code, I can also write it in pseudocode. After that, transposing it to code should not be very hard. -# So what are this flowcharts (the drawings) and pseudocode? +# So what are these flowcharts (the drawings) and pseudocode? During my first semester in college, we had a course about introduction to algorithms. This is where we first learned about this stuff. We learned that a good algorithm and good logical programing is developed using flowcharts and pseudocode. -A **flowchart** represents your program flow from top to bottom. Each command is represented on this. Depending on the nature of the command there are different shapes you can use. A few of them that I mostly use (you can google more on this, google is your friend when you know what to google for) are: +A **flowchart** represents your program flow from top to bottom. Each command is represented on this. Depending on the nature of the command, there are different shapes you can use. A few of them that I mostly use (you can google more on this, google is your friend when you know what to google for) are: ![](//discourse-user-assets.s3.amazonaws.com/original/2X/b/b8b6b68e8b27f8d958b198613ada0a31a22df5ab.png) -More information about this you can find here https://en.wikipedia.org/wiki/Flowchart. +You can find more information about this here: https://en.wikipedia.org/wiki/Flowchart. -**Pseudocode** is an informal language that helps developers write algorithms. It is a text-based design tool and it uses a human readable language. It's a structured english text that describes an algorithm. +**Pseudocode** is an informal language that helps developers write algorithms. It is a text-based design tool and it uses a human-readable language. It's a structured english text that describes an algorithm. Every Algorithm in Free Code Camp curriculum can be solved using pseudocode and after that translated using javascript in a functional javascript code.