Commit Graph

5103 Commits (7b89e15927696749cc0b3cdd6e7c5c98154a0c2f)

Author SHA1 Message Date
Natalie Cardot 545b8a6f34 Modify if statement (#36088)
* Modify if statement

Change the solution so an empty string is returned when num is less than 1 rather than less than 0 for consistency with instructions.

* Add test 

New test checks that if num is 0, an empty string is returned

* Fix test 

Fixing errors in newly proposed test that checks that empty string is returned when num is 0

* Modify intermediate solution

Changing if statement in intermediate solution to check whether num is less than 1 rather than less than 0. (Also adding curly brackets to that solutions if/else statements.)

* fix: removed unnecessary assert message arguments
2019-05-20 21:08:20 -04:00
Ahmad Abdolsaheb 3019f80a14 fix: replace imgur with s3 for arabic guide files with no conflict (#36051)
* fix: replace imgur to s3 for arabic guide files with no conflict

(cherry picked from commit 96a14a1f278c12e0123216813ab27076b1bcdb66)

* fix: remove extra links

Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* fix: revert changes

* fix: revert changes

* fix: remove an unnecessary url addition.
2019-05-21 01:22:16 +05:30
Matt Schlosser c201e41564 typo: Remove errors within a challenge solution (#36097)
* Remove random links from code

Seems that these got added by accident.

* Remove errors from solution in Portuguese version

* Remove errors from solution in Spanish version

* Remove errors from solution in Russian version

* Remove errors from solution in Arabic version

* Remove errors from solution in Chinese version
2019-05-20 12:48:28 -07:00
Ahmad Abdolsaheb 727d55fb5f fix: replace imgur with s3 for spanish guide without conflict (#36056)
* fix: replace imgur with s3 for spanish guide without conflict

* fix: revert incorrect changes
2019-05-21 00:10:42 +05:30
Ahmad Abdolsaheb a16539becf fix: replace imgur with s3 for english guide without conflict (#36053)
* fix: imgur to s3 for englsh guide without conflict

(cherry picked from commit 9c9f15abf4e755feab79ef7090dacdcf497ea7b6)

* fix: revert unrelated changes
2019-05-20 23:54:51 +05:30
Rajat Verma 53fd5d8c14 solution logic fixed for negative numbers (#36093) 2019-05-20 08:31:10 -07:00
Shubhamjainagrawal b55c50c6cf described assignment operator (#32080)
described use of asssignment operator in c program.
2019-05-20 08:05:18 -07:00
Rajiv Ranjan Singh 1be1f430b3 Typo Fix in guide/english/bulma/index.md (#35936)
* Update index.md

* fix: changed terminal to shell
2019-05-19 21:04:36 -05:00
Harshit Omer 34ccf02bba Time Analysis of AVL/ Height Balanced Tree (#31029)
Time Analysis Of AVL Tree:

AVL tree is binary search tree with additional property that difference between height of left sub-tree and right sub-tree of any node can’t be more than 1. 

Algorithm		Average	 Worst case
Space		   O ( n ) {\displaystyle O(n)} O(n)	O ( n ) {\displaystyle O(n)} O(n)
Search		O ( log ⁡ n ) {\displaystyle O(\log n)} O(\log n)	O ( log ⁡ n ) {\displaystyle O(\log n)} O(\log n)
Insert		O ( log ⁡ n ) {\displaystyle O(\log n)} O(\log n)	O ( log ⁡ n ) {\displaystyle O(\log n)} O(\log n)
Delete		O ( log ⁡ n ) {\displaystyle O(\log n)} O(\log n)	O ( log ⁡ n ) {\displaystyle O(\log n)} O(\log n)
2019-05-19 13:09:10 -07:00
Sarvesh Yadav 4a8b643497 True and False interpretion (#32626)
* True and False  interpretion

How true and false is  interpreted by python.

* Update index.md

* Update index.md
2019-05-20 00:34:23 +05:30
smokiebacon bae1bb435c explained the 'for' attribute a bit more (#32294) 2019-05-20 00:31:10 +05:30
PUNIT TIWARI f7f69fca06 add changes " Print value using abs function" . (#33346) 2019-05-19 23:58:36 +05:30
Daniel Segarra 987820f079 Added articles and tip to visual studio code guide. Articles on integrating Prettier with ESLint and Airbnb (#35871) 2019-05-19 23:48:55 +05:30
David Madrigal-Hernandez d54f2d7c8d Add Recommended extension and Add feature (#34495)
I ended up modifying the extension list to include the VIM keybind extension for those who want the experience as well as added Customization as one of the main features of the editor.
2019-05-19 23:48:10 +05:30
Gerard Hynes a30982e862 Add comments and update callback arguments' names (#36082)
* Add comments and update callback arguments' names

I've added a few comments to the solution and given the callback arguments more descriptive names to clarify what the solution is doing, since this challenge seemed a little more complex than the previous challenges.

* Update guide/english/certifications/javascript-algorithms-and-data-structures/functional-programming/use-the-reduce-method-to-analyze-data/index.md

That makes absolute sense and is clearer. Thank you.

Co-Authored-By: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

* Update indentation to be two-spaced
2019-05-19 10:45:34 -07:00
maninaik 0ee212d5af changed the properties of avl trees (#27322)
Changed the property that said that the AVL tree can have zero or more child nodes to avl tree can have zero, one or two child nodes.
2019-05-19 09:24:45 -07:00
Zonqq 28283d7197 Add information AVL tree Wiki (#25811) 2019-05-19 09:23:32 -07:00
rish9898 c69217d5f8 Application of AVL Trees (#25457) 2019-05-19 09:22:45 -07:00
Dipto Karmakar 3dc8f10ae8 Update add-inline-style-in-react (#35739)
- Add my solution in the hint.
2019-05-18 23:02:46 -05:00
Pijus f69768e2ae Density calculator page expansion (#32126)
* Density calculator page expansion

* Update index.md
2019-05-18 18:19:51 +05:30
van-tienhoang 3366d820a7 Adding alternative tools for coding style (#30493)
* Adding alternative tools for coding style

Adding alternative tools for coding style

* fix: changed console to shell
2019-05-18 18:12:07 +05:30
Anas Salam 1485959f5a info added to how to add subtract with powers (#29544)
info added to how to add or subtract with powers
2019-05-18 18:07:03 +05:30
Tom 21118bc26a fix/regex-lower-number-of-matches (#36004)
* fix/regex-lower-number-of-matches

* fix/update-guide

* fix/convert-blockquote-to-backticks
2019-05-17 23:53:00 +01:00
Cameron Behdani a6cc69c4ad Added related resource section and a useful resource (#32997)
* Added related resource section and a useful resource

* Update index.md
2019-05-17 12:16:20 -04:00
Ashwin Aishvarya Vardhan 241d966e54 added info about scikit-learn and accuracy metrics (#30179)
* added info about scikit-learn and accuracy metrics

Added some information about R-squared score.

* Update index.md
2019-05-17 11:26:20 -04:00
Marcus Parsons 5f1e78f4d9 Added new section (#26554)
* Added new section

Added a new section for defining what can be returned in custom methods and how to correct a mistake with returns

* Update guide/english/csharp/return/index.md

Co-Authored-By: marcusparsons <marcusparsons@users.noreply.github.com>

* Update guide/english/csharp/return/index.md

Co-Authored-By: marcusparsons <marcusparsons@users.noreply.github.com>

* Update guide/english/csharp/return/index.md

Co-Authored-By: marcusparsons <marcusparsons@users.noreply.github.com>

* Update guide/english/csharp/return/index.md

Co-Authored-By: marcusparsons <marcusparsons@users.noreply.github.com>
2019-05-17 08:02:17 -07:00
Joseph Houser 7532555abf Corrected translation of "links" (#23358)
Proper translation of "Links" is "Enlaces" not "Campo de Golf" (= "golf course").
2019-05-17 16:38:08 +05:30
Joseph Houser 4ae9e3cdb0 fixed translation of "links" (#23361)
Proper translation of "Links" is "Enlaces" not "Campo de Golf" (= "golf course").
2019-05-17 16:37:49 +05:30
Nischay Hegde 6f8dde9bad Fixed outdated info (#27187)
* Fixed outdated info

C++98 wasn't the standard for a long time. gnu++14 is the current standard and this pull request corrects that.

* Update index.md

* Updated the attribution to fit Purdue's format.
2019-05-17 16:22:22 +05:30
Hasan Abdullah cc1ebb718d feat: add article for JavaScript String.valueOf() (#36017) 2019-05-17 16:21:04 +05:30
Sanket Mishra 5040c2e1ca Fixed typo (#36048) 2019-05-17 11:46:43 +02:00
stavkl 4724c7f5d9 using v to select text (#30528) 2019-05-17 11:36:29 +05:30
zerandomalt 742b56589e Made the formatting more consistent (#30285)
The formatting is now more consistent with the other files in the directory, also added a more information section with a link to the SS64 page.
2019-05-17 11:33:13 +05:30
joesvetz cc0eaff745 Clarification of Knights and Knaves (#29890)
Added a couple of clarifying points to the knights and knaves example. Also gave the wikipedia link a more descriptive title.
2019-05-17 11:31:27 +05:30
cuzza0 1beaac868e Updated services and details of plans (#27912)
Added the names of the services and extended information about plans and tiers of services
2019-05-17 11:26:29 +05:30
Andrew Mackie f7cbf7494b Improvements in wording and notation. (#27370) 2019-05-17 11:24:15 +05:30
Zidan c50fa87df3 عملة رقمية بدل عملة معماة (#20829) 2019-05-17 11:17:34 +05:30
Zidan 31be037c9c أجايل بدلا من رشيق (#20819) 2019-05-17 11:16:53 +05:30
Nimalen Sivapalan 1fefb703eb add more info to the Scrum guide and fix typos (#32042)
* add more info to the Scrum guide and fix typos

* Update index.md
2019-05-16 23:09:33 -04:00
mushtaq smb 9668849659 Highlighted the roles to bold (#31771)
for better readability
2019-05-16 22:11:56 -04:00
creativeST 806f688eaa Add resource Introduction to Scrum (#31332)
* Add resource Introduction to Scrum

Introduction to Scrum Video

* Update index.md
2019-05-16 21:51:04 -04:00
Derek Lane 77df8bb424 Refined content (#33848) 2019-05-16 21:34:05 -04:00
Tosson a0d2c5ccc2 Text added (#32163)
* Text added

* Update index.md
2019-05-16 21:32:56 -04:00
Jacob Kim 93214303d4 Changed BST's worst run-time from O(log n) to O(n) (#31445) 2019-05-16 17:44:45 -07:00
Manas Ojha 5964e764da Changes in the language for better understanding (#31116) 2019-05-16 19:47:52 -04:00
Prab a804897029 Updated the definition of Acceptance criteria (#30971)
Clarified Acceptance criteria from different perspectives
2019-05-16 19:47:11 -04:00
Gonzalo González Mora e2e5bb191e Typos y errores de traducción - typos and translation errors (#20945)
Some small typos and translation errors

Algunos errors de tipeo y traducción pequeños
2019-05-16 16:37:59 -06:00
msha833 78dc866254 Update index.md (#34033) 2019-05-16 20:04:00 +01:00
Kosmas Chatzimichalis cb44b4bb15 Initial Map page (#26450)
* Initial Map page

* Update index.md
2019-05-16 14:31:27 -04:00
Cesar Jimenez ceadc5a839 Switching words (#22580)
* Switching words

Changed the word "común" to "comunmente". Makes more sense.

* Adding accent to "comúnmente"
2019-05-16 23:28:22 +05:30
Adrian Chira 65d4afc9e0 Changed var to const (#22475)
The English version was changed so I changed var to const as in the English version
2019-05-16 23:27:16 +05:30
The Coding Aviator 39a9da5c1d Added solution to D3 predefined scale challenge (#34242)
* Update index.md

* Update index.md

* spacing

* Update index.md
2019-05-16 09:04:54 -07:00
The Coding Aviator e6fef5ff34 Added solution to D3 use dynamic scales challenge (#34241)
* Update index.md

* Update index.md

* Update spacing

* Update index.md
2019-05-16 09:04:08 -07:00
Xiaojie(Aaron) Li c33260581b fixed grammar/articulation of certain sentences (#30508) 2019-05-16 13:04:44 +05:30
Andrew Ma 1d77711431 add solution to redux remove item from array (#35593) 2019-05-16 13:01:37 +05:30
Sunny 719227b733 Made correction in the output of println function when it prints an integer string. (#27034) 2019-05-16 12:19:24 +05:30
rswalve 522c682971 Update index.md (#32849) 2019-05-15 17:50:48 -07:00
Randell Dawson 0a1eeea424 fix(guide) Replace invalid prism code block names (#35961)
* fix: replace sh with shell

fix replace terminal with shell

fix replace node with js

fix replace output with shell

fix replace cs with csharp

fix replace c++ with cpp

fix replace c# with csharp

fix replace javasctipt with js

fix replace syntax  with js

fix replace unix with shell

fix replace linux with shell

fix replace java 8 with java

fix replace swift4 with swift

fix replace react.js with jsx

fix replace javascriot with js

fix replace javacsript with js

fix replace c++ -  with cpp

fix: corrected various typos

fix: replace Algorithm with nothing

fix: replace xaml with xml

fix: replace solidity with nothing

fix: replace c++ with cpp

fix: replace txt with shell

fix: replace code with json and css

fix: replace console with shell
2019-05-15 19:08:19 +02:00
Randell Dawson 4b4762716c fix(curriculum): Rewrote the Write Higher-Order Arrow Functions challenge and moved to Functional Programming section (#35954)
* fix: reworded and moved challenge

* fix: removed extra line

Co-Authored-By: RandellDawson <5313213+RandellDawson@users.noreply.github.com>

* fix; removed extra line

Co-Authored-By: RandellDawson <5313213+RandellDawson@users.noreply.github.com>

* fix: reworded sentence

Co-Authored-By: RandellDawson <5313213+RandellDawson@users.noreply.github.com>
2019-05-15 11:12:17 -05:00
The Coding Aviator d390b40a9f Update index.md (#34282) 2019-05-15 01:16:58 -07:00
Randell Dawson 227685af59 fix: reordered content and added headers (#34713) 2019-05-15 12:28:56 +05:30
Randell Dawson b013f2ab3a fix: declared x variable (#36046) 2019-05-15 11:49:44 +05:30
E.T aad311a76f Translated html comment (#23860)
Translated this " FreeCodeCamp is an open-source project that needs your help" to this "FreeCodeCamp es un projecto de codigo abierto que neccesita tu ayuda"
2019-05-14 23:58:15 -05:00
Aldo e9c0198917 Update python name in index.md (#28360)
* Update index.md

Programming languages has no formal translation to spanish, they are named with their original names.

* fix: changed node to js
2019-05-14 23:55:51 -05:00
Antonio Alaminos 5cb79c219b Some changes in first parragraphs (#24527) 2019-05-14 23:44:54 -05:00
E.T 3a20ddfdd6 Translated HTML comment (#23848)
Translated this text "You can comment out a large number of lines like this." to this "Puedes commentar varias lineas como estas."
2019-05-14 23:41:53 -05:00
Andrés Sanjose 86b17db98e Full text editing (#21326)
Changed tone to less formal throughout the text. Grammar editing. Changed a few words and phrases. Improved translation.
2019-05-14 23:24:26 -05:00
J4unty 44561ae524 Java stream additions (#33003)
* Reworked Java Streams

* Added Stream  examples for parallel streams
2019-05-14 21:10:18 -07:00
Julian Krieger 0ed2246708 Nearer specified collect function (#32430)
Added an example to specify how collecting works
2019-05-14 19:27:50 -07:00
Wei Hung Chin 4f223e68d0 Add new example (#30133)
Added example of using map operator to get a list of object properties from a list of objects
2019-05-14 19:19:59 -07:00
Evaldas 57762df6f7 Add information about pattern matching (#24400)
Added information about how we can use a switch statement for pattern matching and gave an example from Microsoft docs.
2019-05-13 22:18:18 +05:30
Travis Benfield fe2f7ef5d3 Grammar fixes (#33049) 2019-05-13 09:47:42 -07:00
AgentMcBride 17d5b64553 update index.md (#32087)
Added a way to practice terminal skills with the use of overthewire war-games.
2019-05-12 17:29:29 -07:00
Michael G f9482c3df9 Added examples for complex numbers to numeric-types article (#28443)
* Added examples for complex numbers to numeric-types article

Introduce 3 examples of what a complex number would look like in Python.

* fix: moved links to bottom
2019-05-12 16:26:53 -07:00
Tanay Kulkarni 0a69401e59 Added python package installer details (#31594)
* Added python package installer details

* Update index.md
2019-05-12 16:26:40 -07:00
mayank6 bf36259770 Added a way to get multiple inputs (#31684) 2019-05-12 16:01:33 -07:00
Tanuj Sharma 21c45aabde added more common and efficient data structures (#29225) 2019-05-12 15:57:13 -07:00
Glafs dc0f0a96bb Added text to boolean-operations in python guides (#31023)
Added descriptions and examples of other boolean-operations which are not part of the Python language, but still useful to know.
2019-05-12 15:43:16 -07:00
Domingo Moronta 6361c48b99 Add formatted string literals example (#33192) 2019-05-12 15:36:26 -07:00
Jozef Maloch d23f5ea952 Insertion (#30223) 2019-05-12 15:35:04 -07:00
Nathan Liang 01163b2c6b corrected typos and clarified sentence structures (#32947) 2019-05-12 15:27:03 -07:00
Harshit Omer c4f17674cf Adding Time Analysis for B-Trees (#31013)
* Adding Time Analysis for B-Trees

Time Analysis for B-Tree:

Suppose a B-tree has n elements and M is the maximum number of children a node can have. What is the maximum depth the tree could have? What is the minimum depth the tree could have?

    The worst-case depth (maximum depth) of a B-tree is: logM/2 n.
    The best-case depth (minimum depth) of a B-tree is: logM n.

Worst-Case Times for B-Trees:

    Adding or removing an element in a B-tree with n elements is O(log n).

* fix: removed duplicate info
2019-05-12 15:19:23 -07:00
25Harry 3e404cd075 Created required brackets in logn (#33401) 2019-05-12 14:58:05 -07:00
kellyhuang21 1a4d7a04ac Added b-tree insertion (#30195)
* Added b-tree insertion

* Added Insertion
2019-05-12 14:51:01 -07:00
Nayan Chawla db22bd3547 Python 3 Change (#28596)
Included difference in python 3 vs python 2
2019-05-12 14:33:15 -07:00
Michael G 43f2e6223f Added another example to defining-functions article (#28449)
Added an example to help show how to define and call functions in a simple and easy to understand manner.
2019-05-12 14:31:47 -07:00
Eric Hodges 0ec1249ba4 Added (GUI) to make text more clear (#31739)
Added (GUI) to first line in the first paragraph.
2019-05-12 10:30:14 -07:00
Adi f8de183d32 Adding new commands to the list (#28206)
Adding new commands to the list of commands
2019-05-12 10:28:53 -07:00
Yash Kapadia ce5af168e4 Fixed link, document format, and grammar (#28023) 2019-05-12 10:25:28 -07:00
Christian Garcia b8aa04fc3c fix(guide): typos in bash-redirection (#29279) 2019-05-12 10:01:01 -07:00
Weder Ribas efb5310daf Fix incorrect proper name translation and phrases with wrong meaning (#22950)
Some occurrences of proper names, like "React" and "React Native" were wrongly translated to Portuguese.
2019-05-12 10:00:00 -07:00
Mo1914 ceb2234d92 Scrum Components (#27581)
Edited Scrum component description and added components.
2019-05-12 09:56:50 -07:00
Heather Kusmierz c6b968d5bc fix(guide): remove redundant Jupyter NB material and passive voice, simplify exp… (#32940)
* fix(guide): remove redundant material and passive voice, simplify explanations

* Text edit to restart build
2019-05-12 09:54:37 -07:00
vinexer e97fc24c49 Translated lines 22 - 55 (#33745)
Updated the language to portuguese in lines 22 to 55
2019-05-12 09:50:47 -07:00
Descritorio 2b27a01ddc Added extra information to "Article Tag" section (#34101)
* Added extra information to "Article Tag" section

* Fixed "Article Tag" section

Fixed grammatical errors and combined multiple lines
2019-05-12 09:50:00 -07:00
Sonja 9d2307acf6 Update index.md (#27230)
Edited for grammatical errors and some awkward sentences/phrases. Hope this is helpful.
2019-05-12 09:48:14 -07:00
CodeStrike 42f565dd04 This method also cleanup the resources such as threads so that application runs smooth. (#32340) 2019-05-12 09:43:47 -07:00
Ashish singh 0308cd3f9c Added extra commands that comes very handy (#27195)
* update index.md

Added extra commands that comes very handy

* Update index.md

* Update index.md

* fixed a typo
2019-05-12 09:40:34 -07:00
Nischay Hegde 97e4c38f08 Fixed Formatting. (#27144)
Fixed the formatting and grammar. 
Also made it clear that `malloc()` is generally discouraged for use in C++. See [here](https://stackoverflow.com/questions/45105100/when-and-why-we-must-use-the-malloc) for more info.
2019-05-12 09:40:01 -07:00
anthonyjvoss f4a196ab0e Added stderr & stdout redirection examples (#28153) 2019-05-12 09:39:12 -07:00
coolmint204 18acffecad Add "Find out more" links and section on BLAST (#24949)
Useful links for finding out more on Computational Genomics, and added a section detailing BLAST, a very useful search algorithm and database for bioinformatics.
2019-05-12 09:32:56 -07:00
Aingeru 3f8d31656b Code comments translated (#21909)
* Code comments translated

Traducidos los comentarios del código de los ejemplos.

* Update index.md
2019-05-12 12:42:55 +05:30
Cesar Jimenez 426dbc12ba Typo fixed (#22562)
* Typo fixed

Changed the title from "Liza" to "Listas"

* Update index.md
2019-05-12 11:52:11 +05:30
Cesar Jimenez aaf94a173b Fixing title and one sentence (#22601)
Title read: Código de Documentación
Should read: Documentación del código
2019-05-12 00:01:29 -05:00
Chris b1ef7ecfbf Add plots to R guide (#25444)
* Add plots to R guide

* Deleted plotting file

* added a plotting index.md for R
2019-05-11 17:27:01 -04:00
Adam Shaffer fb32d44c54 Expand Propositional Logic Stub (#25398)
This is a simple addition to this stub that briefly explains Modus Ponens.
2019-05-11 17:22:10 -04:00
Dexter Rualo 101087ab13 Add: GnuPG Guide (#25060)
* Add: GnuPG Guide

* Update index.md

* Update index.md

* Update index.md

* fixed title
2019-05-11 17:11:24 -04:00
Stéphane METZ d073722880 Create tar file (#25056) 2019-05-11 17:09:05 -04:00
Frank Schmitt 6475fe2298 added some basic information and examples for Elm lists (#25042) 2019-05-11 17:07:03 -04:00
Chirayu Samarth ce212d6c35 added info smart_open module (#25000) 2019-05-11 17:04:09 -04:00
UberschallSamsara dc9839d908 Added section "Relationship to pointers", fixed misspelled "Initializiation" (#31683)
* Added section "Relationship to pointers"

* fix: changed c++ to cpp
2019-05-11 13:00:38 -07:00
sah-pinocchio db6756aaa2 add the text in definition of Array. (#30662)
* add the text in definition of Array.

add the text " by adding an index to a unique identifier" after "An array is a series of elements of the same data type which are stored in contiguous memory locations and can be referenced individually".

* fix: changed c++ to cpp
2019-05-11 12:07:29 -07:00
Marek Troszczyński 619811f640 Expand explanation. (#33890) 2019-05-11 22:25:48 +05:30
Nnaemeka Valentine Eziamaka d34c64cee6 Making the code more readable (#29465) 2019-05-11 22:20:00 +05:30
Jack da5284f772 Add information about key binding (#28209)
* Add information about key binding

Also improved grammar and accuracy of information

* fix: removed =====

* Update index.md

* Update index.md
2019-05-11 22:15:40 +05:30
Jeff Thompson 1da5d765e9 clarify text (#34037)
added the to sentences and clarified a question.
2019-05-11 22:14:32 +05:30
Pijus 5e4a364e98 Prime number calculator page expansion (#32132)
* Prime number calculator page expansion

* fix spacing
2019-05-11 22:10:51 +05:30
Nitin Sharma 35c38ce5f4 Simplified language. (#32814)
Simplified the language, removing duplicate phrases.
Also did little formatting.
2019-05-11 22:06:13 +05:30
Shooflower 3938722d13 Corrected grammar/spelling errors (#31402) 2019-05-11 22:01:32 +05:30
Ritaban Datta 272499aa63 Updated recursion (#32505)
Deleted an extra white space
2019-05-11 21:57:53 +05:30
Randy Janecek 23cc43c301 Fixed typo, improved readability. (#32580) 2019-05-11 21:55:33 +05:30
Andrew Rohde 152a73c81a Changed preform to perform (#31731) 2019-05-11 21:48:56 +05:30
Himanshu Patel 2ed6bc9831 Minor grammatical corrections. (#31228) 2019-05-11 21:44:41 +05:30
Cesar Jimenez e345970e51 Adding 1 accent to a word (#22618)
1 instance of the word exito was not accentuated in the article. It should read éxito.
2019-05-11 21:32:08 +05:30
Chris Steenkamp 77509c6d23 Add examples of creating static and dynamic arrays (#30358)
* Add examples of creating static and dynamic arrays

* fix: changed c++ to cpp
2019-05-11 08:40:41 -07:00
samujjal1618 1c7fbc043e Improved on the Dynamic array description (#27761)
* Improved on the Dynamic array description

* fix: changed c++ to cpp
2019-05-11 08:08:13 -07:00
Parminder Singh 1c669fd568 Graph Algorithms: Added ford fulkerson algorithm for maximum flow (#24481)
* added ford fulkerson algorithm guide

* fix: changed to 2 space indentation
2019-05-10 20:46:26 -07:00
Mahesh Jaganiya 3669ed4238 Added "Intent Services" (#30876)
Added more information in services about intent services.
2019-05-10 20:12:20 -07:00
tess d2901ac0ae Added Go to list (#31469) 2019-05-10 20:11:50 -07:00
codyteo 0d33020bd0 Elaboration of SAFe configurations (#24838)
Elaborating on Full SAFe, Large Solution SAFe, Portfolio SAFe, and Essential SAFe.
2019-05-10 19:58:04 -07:00
sophiekamuf d379381458 Add "K-means clustering description" (#24684) 2019-05-10 19:56:16 -07:00
Kyle Lobo 379e76676a Added escape sequences, operators in "terms-to-know-for-beginners" (#28832)
* Added escape sequences, operators in "terms-to-know-for-beginners"

Added extra details/facts about multi-line comments in C++
Also fixed some indentation

* fix: changed c++ to cpp
2019-05-10 17:06:04 -07:00
Justin Thomas 31ff1b08ea Add a section on Decentralized Apps (#31443) 2019-05-10 16:37:03 -07:00
prashantkumar1997 098f9c478e Added reference links section (#29593)
* Added reference links section

* fix: changed c++ to cpp

* fix: changed one extra c++ to cpp
2019-05-10 16:04:50 -07:00
prashant 39352ce64d add "Quit sftp." option (#29454)
* add "Quit sftp." option

Added "Quit sftp." and manpage referernce

* fix: changed unix to bash
2019-05-10 16:02:47 -07:00
Lipis 4101d5c73e Replace Github -> GitHub (Spanish) (#35182) 2019-05-10 12:44:53 -07:00
Amol Pednekar bc17e56594 Generalized smart contract definition | Updated Blockchain technology section (#30994)
Earlier description seemed to Ethereum specific, hence updated.
Also would be more accurate to say Hyperledger - (Specific project) instead of the umbrella term just "Hyperledger" because they have tons of projects.
2019-05-09 14:54:06 -07:00
Randell Dawson d3c8eacef2 Hints & Solution for React and Redux (#35946) 2019-05-09 18:57:06 +05:30
Randell Dawson 1b07106f8e fix: removed guide articles no longer needed (#35679) 2019-05-08 21:26:48 -05:00
Varsha Margrette db9eca1bde Update index.md (#30256) 2019-05-08 10:27:16 -07:00
Deanna Tran 338d7ee8a7 Change "rest operator" to say "rest parameter" in challenges and guide (#35496)
* change es6 challenges rest operator to param

* fix rest parameter typos

* change rest operator to parameter in guide

* fix casing

* change rest operator to rest parameter in guide

* change rest operator to rest parameter in curriculum

* remove extra whitespace

* remove whitespaces

* remove whitespace

* fix: removed arabic file

* fix: removed chinese file
2019-05-08 16:30:24 +02:00
Denis Kurgan 6924d9c9e8 Update index.md (#30410) 2019-05-08 12:09:11 +04:00
Denis Kurgan 1a204a94d7 Update index.md (#30390) 2019-05-08 12:08:12 +04:00
Denis Kurgan c6982549e5 Update index.md (#30386) 2019-05-08 12:07:24 +04:00
Denis Kurgan be64029374 Update index.md (#30378) 2019-05-08 12:06:57 +04:00
Denis Kurgan 7670cfa94f Update index.md (#30363) 2019-05-08 12:06:29 +04:00
Ayush Jain 128f8b3cbc Added Swift Implementation of Counting Sort (#35719) 2019-05-06 06:48:11 -05:00
Tom 3cecf26f44 update restrict possible usernames solution (#35973) 2019-05-05 13:37:03 -07:00
Randell Dawson cc6f234228 [Fix] correct Guide article example for Iterate Through the Keys of an Object with a for...in Statement (#35197)
* fix: added dot btwn [user] and online

* fix: corrected example for other languages
2019-05-05 13:26:22 -05:00
Andrew Ma 586730b69a better solution to redux spread operator (#35592)
2 step -> 1 step
2019-05-05 12:40:32 -05:00
Marcus Parsons 7bf2752bd0 Edited previous section and added new sections (#24828)
* Edited previous section and added new sections

Edited previous section to be csharp code base and formatted a bit better.  Also added new sections about more complex topics of for loops

* fix: removed repl.it links

* Update index.md
2019-05-04 09:21:53 -07:00
lasjorg 7573252fa0 feat(guide): add guide for HTML value attribute challenge (#35783) 2019-05-03 10:16:50 -05:00
Tina Wang e78b0b868f Fix(guide articles): Developer/case studies links in English (#35771)
* added working links, descriptions, more info links into cse studies

* deleted code of ethics as it is already listed in another page

* changed wording to -expose- as it flows better
2019-05-03 09:57:44 -05:00
Navjot Singh b9fdbffa71 Broken Links in Sum of all odd Fibbonaci Nos Guide (#35911)
Fixed a broken and a missing link in the guide.
2019-05-03 14:21:09 +05:30
PUNIT TIWARI 7bd91ddffd Add changes " Define " to article. (#33357) 2019-05-02 08:54:42 -07:00
Randell Dawson 88e7c2d704 fix: added better hint and solution (#35746) 2019-05-01 18:09:45 -04:00
Nischay Hegde a43d6c6daf Fixed syntax error. (#27164)
* Fixed syntax error.

Fixed a syntax error in line 55.
Also corrected the indentation.

* Update index.md
2019-05-01 18:03:18 -04:00
Daniel 44661a3e06 Fixed block code and syntax highlighting (#29977)
This commit fixes the example code to demonstrate the working of arithmetic operators so that the entire code, from initial comment to ending curly brace for main(), is in a Markdown code block and is syntax highlighted.  Spacing around the include and int initialization was improved as well.
2019-05-01 08:06:29 -07:00
Daniella Todd 36a4df9afa Updated solution-Include intro (#34199) (#34486)
Added intro paragraph and further hints.
2019-05-01 12:48:31 +02:00
Joon 61dfcfd4a3 New header added (#26525)
* New header added

Went into an abstract level of what determines a brand based on all the self-development books I have been devouring.

* Minor grammar fixes
2019-05-01 13:44:26 +05:30
Garret Kemp 0ba2b1b09c Solution and hint added to challenge (#35762) 2019-04-30 09:14:23 -07:00
chaomt fbe8dcdf6b fix(guide): binary search tree min/max height (#35938)
We added the correct solution to the guide article related to this code challenge, and deleted the other information which is not related to the code challenge at all.
2019-04-30 13:16:17 +05:30
Matt 59cbe5ae7a update index.md (#33486)
Provide more information on what nginx is and some basic tutorial links.
2019-04-29 15:39:34 -07:00
Muh Fachrul Razy c8d39b6658 Add 'sudo' and Step 3 - 4 (#33067)
Add sudo at the first of each syntax line and added Step 3 (firewall adjustment) and Step 4 (check nginx service)
2019-04-28 10:01:51 -07:00
Nikita bee5145d8f Correctly translated into Russian (#29983) 2019-04-28 15:37:59 +04:00
JesseJams bab94ccf00 Addition of overview of nginx files and locations. (#30566)
* Overview of nginx files and locations.

* fix: wasn't necessary to add apt-get under CentOS
2019-04-27 18:48:38 -07:00
Rajiv Ranjan Singh 43b4c64c9c fixed typos (#35736) 2019-04-26 15:21:51 -07:00
purifyyourhome 5395b70d12 Added reference to Raspberry pi and desktop ATX (#31292)
Modified "Types of Motherboards" section to point to how ATX is common mostly for desktop and server computers.  Mentioned how many Single Board Computers such as the Raspberry Pi use their own form factor not based off the ATX standard.
2019-04-26 14:18:19 -07:00
Sudhakar Kumar 6c02554045 Fix superscripts (#34921)
Fix the superscripts for squares and cubes in area and volume.
2019-04-25 01:03:26 -07:00
Yan Logan f92c3b0aa5 Update index.md (#29710)
Fox incorrect translations
2019-04-25 10:11:55 +04:00
ComputerLee d5c461427b Minor Grammatical Changes (#30414) 2019-04-24 13:28:11 -07:00
WolfHollow 7a8604e209 told about cmos (#29871) 2019-04-24 12:19:34 -07:00
Alexander Dervish fc1977b2c9 Correct translation for Ruby Numbers operators (#30333) 2019-04-24 21:25:33 +04:00
Peter Kay a1e33ebf81 update regex resource link (#35901) 2019-04-24 07:19:44 -07:00
Manish Giri 220c982d52 fix(guide): Fix C++ selection sort algo (#35546) 2019-04-23 09:48:42 -07:00
Nitin Sharma f743f1e732 Fixed example (#32827)
Replaced assignment operator with the equality operator.
Fixed example structure.
Improved language.
2019-04-23 08:04:48 -07:00
Alexander Dervish 2874baa0c6 Ruby Arrays Correct translation (#30279) 2019-04-22 21:46:02 +04:00
Nikita e4b04ea84b Correctly translated into Russian (#30041) 2019-04-22 21:39:17 +04:00
Cezary Waś 65a92f7ef9 Defining variables (#35891)
biString, uniString and i should be defined.
2019-04-22 11:25:30 +05:30
Kaustubh J 7b51ec6487 Update index.md (#32513)
Added python code and mentioned randomized pivot
2019-04-21 14:16:14 -07:00
Mahmud031 229bec9a4b Added quick-sort in MATLAB (#27823) 2019-04-21 09:24:43 -07:00
StanimalTheMan 01b61eb831 fix: update grammar & spelling react (#35882) 2019-04-20 08:55:03 -07:00
Domingo Moronta 6c2c4f546e Add updated links to Anaconda resources (#32363)
* Add updated links to Anaconda resources

* fix: removed broken image
2019-04-19 16:16:37 -07:00
Nikita 1f7a1a6e1f Correctly translated into Russian (#30022) 2019-04-19 14:00:52 +04:00
Austin Baldwin 9a64e1f1e6 Add help command for conda. (#31418) 2019-04-18 17:49:13 -07:00
unrealriga 7aceb4595e Update index.md (#29884) 2019-04-18 22:39:56 +04:00
RomsavaDev 68e1eab64e Add new russian text about ROM (#29812) 2019-04-18 22:38:30 +04:00
Witcharrr 256facb79a Fixed translation a bit (#29801) 2019-04-18 22:37:56 +04:00
Aditya Sridhar 35cfffebd5 Added points to note while using git reset (#25267)
* Added points to note while using git reset

Using --hard option can be dangerous. Added a warning to mention the same.

* Added points to note while using git reset - pull request fixes

Co-Authored-By: aditya-sridhar <s.aditya.1811@gmail.com>
2019-04-18 10:26:18 +05:30
Zach Lumpkins 2327e6cc5d Minor edits to animation-in-canvas guide code (#31185)
* docs(guide): minor edits to animation-in-canvas

* Use ES6 syntax in code examples
* Clean up formatting in code examples for clarity
* Remove unnecessary sentence for brevity

* docs(guide): use arrow functions for canvas animation examples
2019-04-17 15:00:35 -07:00
Witcharrr 76e62b1032 Fixed translation for a little (#29802) 2019-04-17 20:26:35 +04:00
Chris Steenkamp 339aa0dcdb Fix minor grammatical and spelling errors (#30407)
* Fix minor grammatical and spelling errors

* fix: made recommend change
2019-04-17 17:38:06 +05:30
Papun Charan ddc5f2457a Added a tip and a statement (#30277)
* Added a tip and a statement

The statement says that using only 'if' is ok but 'else' and 'else if' can't be used without 'if'.
And the tip column is for optimization, it is clearly explained with two examples.

* Formatting
2019-04-17 17:36:58 +05:30
SimonFuet 98f52a448e Add ternary operator to control flow statements (#29269)
* Add ternary operator to control flow statements

* Remove external links, formatted code and removed useless codeblock
2019-04-17 17:31:20 +05:30
Tanuj Sharma 8c55c83f47 fixed typos and reference link syntax (#29188) 2019-04-17 17:15:48 +05:30
Alexander Molnar c807429608 Fixed errors and added examples with variety (#24300)
Made precise that intercepts are (x,y)-points and not numbers. Added more examples to show different possibilities that can occur and removed the oversized image of a few short lines of equations.
2019-04-17 17:11:01 +05:30
Richard Hall d45c83d031 Create index.md (#28927) 2019-04-17 17:08:52 +05:30
Smruti Ranjan Rana 7e44e13b21 Added 'Range' example, Update 'More Informations' (#27593) 2019-04-17 17:00:28 +05:30
Ian Korpi edc9d0f134 Expand Certifications/Information Security and Quality Assurance article stub (#27397)
* Expand InfoSec & QA article

Expand the Information Security & Quality Assurance root article.

* Fixing capitalization in InfoSec title.
2019-04-17 16:59:21 +05:30
Ayushman9454 1b8d148a0d added one more attribute (#27307) 2019-04-17 16:57:13 +05:30