fix(guide): restructure curriculum guide articles (#36501)

* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
This commit is contained in:
Randell Dawson
2019-07-24 00:59:27 -07:00
committed by mrugesh
parent c911e77eed
commit 1494a50123
990 changed files with 13202 additions and 8628 deletions

View File

@@ -1,7 +1,7 @@
---
title: 100 doors
---
## 100 doors
# 100 doors
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/100-doors/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: 24 game
---
## 24 game
# 24 game
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/24-game/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: 9 billion names of God the integer
---
## 9 billion names of God the integer
# 9 billion names of God the integer
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/9-billion-names-of-god-the-integer/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: ABC Problem
---
## ABC Problem
# ABC Problem
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/abc-problem/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Abundant, deficient and perfect number classifications
---
## Abundant, deficient and perfect number classifications
# Abundant, deficient and perfect number classifications
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/abundant-deficient-and-perfect-number-classifications/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Accumulator factory
---
## Accumulator factory
# Accumulator factory
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/accumulator-factory/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Ackermann function
---
## Ackermann function
# Ackermann function
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/ackermann-function/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Align columns
---
## Align columns
# Align columns
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/align-columns/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Amicable pairs
---
## Amicable pairs
# Amicable pairs
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/amicable-pairs/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Averages/Mode
---
## Averages/Mode
# Averages/Mode
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/averagesmode/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Averages/Pythagorean means
---
## Averages/Pythagorean means
# Averages/Pythagorean means
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/averagespythagorean-means/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Averages/Root mean square
---
## Averages/Root mean square
# Averages/Root mean square
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/averagesroot-mean-square/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Babbage problem
---
## Babbage problem
# Babbage problem
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/babbage-problem/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,25 +1,24 @@
---
title: Balanced brackets
---
## Balanced brackets
# Balanced brackets
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/balanced-brackets/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
<a href='https://github.com/freecodecamp/guides/blob/master/README.md' target='_blank' rel='nofollow'>This quick style guide will help ensure your pull request gets accepted</a>.
---
## Solutions
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
<details><summary>### Solution #1 (Click to Show/Hide)</summary>
### Basic Solution
```js
function isBalanced(str) {
if (str === '') return true;
if (str === "") return true;
str = str.split('');
str = str.split("");
let stack = [];
for (let i = 0; i < str.length; i++) {
if (str[i] === '[') {
stack.push('[');
} else if (str[i] === ']' && stack[stack.length - 1] === '[') {
if (str[i] === "[") {
stack.push("[");
} else if (str[i] === "]" && stack[stack.length - 1] === "[") {
stack.pop();
}
}
@@ -32,3 +31,5 @@ function isBalanced(str) {
- Push every `[` into a stack.
- Check if the item stored on the stack is `[` when a `]` occurs. This makes it a pair & `[` can be removed from the stack.
- The brackets are balanced if there is no item present in the stack.
</details>

View File

@@ -1,7 +1,7 @@
---
title: Circles of given radius through two points
---
## Circles of given radius through two points
# Circles of given radius through two points
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/circles-of-given-radius-through-two-points/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Closest-pair problem
---
## Closest-pair problem
# Closest-pair problem
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/closest-pair-problem/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Combinations
---
## Combinations
# Combinations
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/combinations/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Comma quibbling
---
## Comma quibbling
# Comma quibbling
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/comma-quibbling/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Compare a list of strings
---
## Compare a list of strings
# Compare a list of strings
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/compare-a-list-of-strings/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Convert seconds to compound duration
---
## Convert seconds to compound duration
# Convert seconds to compound duration
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/convert-seconds-to-compound-duration/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Count occurrences of a substring
---
## Count occurrences of a substring
# Count occurrences of a substring
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/count-occurrences-of-a-substring/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Count the coins
---
## Count the coins
# Count the coins
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/count-the-coins/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Cramer's rule
---
## Cramer's rule
# Cramer's rule
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/cramers-rule/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Date format
---
## Date format
# Date format
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/date-format/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Date manipulation
---
## Date manipulation
# Date manipulation
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/date-manipulation/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Day of the week
---
## Day of the week
# Day of the week
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/day-of-the-week/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Deal cards for FreeCell
---
## Deal cards for FreeCell
# Deal cards for FreeCell
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/deal-cards-for-freecell/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Deepcopy
---
## Deepcopy
# Deepcopy
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/deepcopy/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Define a primitive data type
---
## Define a primitive data type
# Define a primitive data type
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/define-a-primitive-data-type/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Department Numbers
---
## Department Numbers
# Department Numbers
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/department-numbers/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Discordian date
---
## Discordian date
# Discordian date
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/discordian-date/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Element-wise operations
---
## Element-wise operations
# Element-wise operations
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/element-wise-operations/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Emirp primes
---
## Emirp primes
# Emirp primes
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/emirp-primes/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Entropy
---
## Entropy
# Entropy
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/entropy/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Equilibrium index
---
## Equilibrium index
# Equilibrium index
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/equilibrium-index/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Ethiopian multiplication
---
## Ethiopian multiplication
# Ethiopian multiplication
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/ethiopian-multiplication/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Euler method
---
## Euler method
# Euler method
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/euler-method/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Evaluate binomial coefficients
---
## Evaluate binomial coefficients
# Evaluate binomial coefficients
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/evaluate-binomial-coefficients/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Execute a Markov algorithm
---
## Execute a Markov algorithm
# Execute a Markov algorithm
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/execute-a-markov-algorithm/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Execute Brain****
---
## Execute Brain****
# Execute Brain****
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/execute-brain/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Extensible prime generator
---
## Extensible prime generator
# Extensible prime generator
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/extensible-prime-generator/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Factorial
---
## Factorial
# Factorial
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/factorial/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Factors of a Mersenne number
---
## Factors of a Mersenne number
# Factors of a Mersenne number
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/factors-of-a-mersenne-number/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Factors of an integer
---
## Factors of an integer
# Factors of an integer
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/factors-of-an-integer/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Farey sequence
---
## Farey sequence
# Farey sequence
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/farey-sequence/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Fibonacci n-step number sequences
---
## Fibonacci n-step number sequences
# Fibonacci n-step number sequences
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/fibonacci-n-step-number-sequences/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Fibonacci sequence
---
## Fibonacci sequence
# Fibonacci sequence
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/fibonacci-sequence/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Fibonacci word
---
## Fibonacci word
# Fibonacci word
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/fibonacci-word/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Fractran
---
## Fractran
# Fractran
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/fractran/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Gamma function
---
## Gamma function
# Gamma function
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/gamma-function/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Gaussian elimination
---
## Gaussian elimination
# Gaussian elimination
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/gaussian-elimination/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: General FizzBuzz
---
## General FizzBuzz
# General FizzBuzz
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/general-fizzbuzz/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Generate lower case ASCII alphabet
---
## Generate lower case ASCII alphabet
# Generate lower case ASCII alphabet
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/generate-lower-case-ascii-alphabet/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Generator/Exponential
---
## Generator/Exponential
# Generator/Exponential
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/generatorexponential/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Gray code
---
## Gray code
# Gray code
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/gray-code/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Greatest common divisor
---
## Greatest common divisor
# Greatest common divisor
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/greatest-common-divisor/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Greatest subsequential sum
---
## Greatest subsequential sum
# Greatest subsequential sum
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/greatest-subsequential-sum/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Hailstone sequence
---
## Hailstone sequence
# Hailstone sequence
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/hailstone-sequence/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Happy numbers
---
## Happy numbers
# Happy numbers
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/happy-numbers/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Harshad or Niven series
---
## Harshad or Niven series
# Harshad or Niven series
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/harshad-or-niven-series/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Hash from two arrays
---
## Hash from two arrays
# Hash from two arrays
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/hash-from-two-arrays/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Hash join
---
## Hash join
# Hash join
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/hash-join/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Heronian triangles
---
## Heronian triangles
# Heronian triangles
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/heronian-triangles/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Hofstadter Figure-Figure sequences
---
## Hofstadter Figure-Figure sequences
# Hofstadter Figure-Figure sequences
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/hofstadter-figure-figure-sequences/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Hofstadter Q sequence
---
## Hofstadter Q sequence
# Hofstadter Q sequence
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/hofstadter-q-sequence/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: I before E except after C
---
## I before E except after C
# I before E except after C
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/i-before-e-except-after-c/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: IBAN
---
## IBAN
# IBAN
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/iban/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Identity matrix
---
## Identity matrix
# Identity matrix
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/identity-matrix/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Rosetta Code
---
## Rosetta Code
# Rosetta Code
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/quadratic-equations/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Iterated digits squaring
---
## Iterated digits squaring
# Iterated digits squaring
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/iterated-digits-squaring/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Jaro distance
---
## Jaro distance
# Jaro distance
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/jaro-distance/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: JortSort
---
## JortSort
# JortSort
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/jortsort/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Josephus problem
---
## Josephus problem
# Josephus problem
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/josephus-problem/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: S-Expressions
---
## S-Expressions
# S-Expressions
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/s-expressions/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Sailors, coconuts and a monkey problem
---
## Sailors, coconuts and a monkey problem
# Sailors, coconuts and a monkey problem
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/sailors-coconuts-and-a-monkey-problem/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: SEDOLs
---
## SEDOLs
# SEDOLs
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/sedols/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Taxicab numbers
---
## Taxicab numbers
# Taxicab numbers
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/taxicab-numbers/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Tokenize a string with escaping
---
## Tokenize a string with escaping
# Tokenize a string with escaping
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/tokenize-a-string-with-escaping/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Top rank per group
---
## Top rank per group
# Top rank per group
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/top-rank-per-group/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Topological sort
---
## Topological sort
# Topological sort
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/topological-sort/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Towers of Hanoi
---
## Towers of Hanoi
# Towers of Hanoi
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/towers-of-hanoi/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Vector cross product
---
## Vector cross product
# Vector cross product
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/vector-cross-product/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Vector dot product
---
## Vector dot product
# Vector dot product
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/vector-dot-product/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Word wrap
---
## Word wrap
# Word wrap
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/word-wrap/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Y combinator
---
## Y combinator
# Y combinator
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/y-combinator/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Zeckendorf number representation
---
## Zeckendorf number representation
# Zeckendorf number representation
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/zeckendorf-number-representation/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Zhang-Suen thinning algorithm
---
## Zhang-Suen thinning algorithm
# Zhang-Suen thinning algorithm
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/zhang-suen-thinning-algorithm/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.

View File

@@ -1,7 +1,7 @@
---
title: Zig-zag matrix
---
## Zig-zag matrix
# Zig-zag matrix
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/coding-interview-prep/rosetta-code/zig-zag-matrix/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.