You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains JavaScript based examples of many popular algorithms and data structures.
4
+
5
+
An algorithm is a series of step-by-step instructions that describe how to do something.
6
+
7
+
To write an effective algorithm, it helps to break a problem down into smaller parts and think carefully about how to solve each part with code.
8
+
9
+
This repository contains JavaScript based examples that will teach you the fundamentals of algorithmic thinking by writing algorithms that do everything from converting temperatures to handling complex 2D arrays.
10
+
11
+
All of these examples are from FreeCodeCamp's [course](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures).
-[Convert Celsius to FahrenheitPassed](#convert-celsius-to-fahrenheitPassed)
17
+
18
+
## Basic Algorithm Scripting
19
+
20
+
### 1. Convert Celsius to FahrenheitPassed
21
+
22
+
### Difficulty: Beginner
23
+
24
+
The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32.
25
+
26
+
You are given a variable celsius representing a temperature in Celsius. Use the variable fahrenheit already defined and assign it the Fahrenheit temperature equivalent to the given Celsius temperature. Use the algorithm mentioned above to help convert the Celsius temperature to Fahrenheit.
0 commit comments