- Notifications
You must be signed in to change notification settings - Fork5.8k
PP FT MEX - Otto Emiliano#466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Closed
Uh oh!
There was an error while loading.Please reload this page.
Closed
Changes fromall commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
56 changes: 55 additions & 1 deletionstarter-code/basic-algorithms.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,61 @@ | ||
// Names and Input | ||
let hacker1 = 'Emiliano Popoca' | ||
console.log(`The driver's name is ${hacker1}`) | ||
let hacker2 = prompt('Enter the navigator name') | ||
console.log(`The navigator's name is ${hacker2}`) | ||
//Conditionals | ||
let h1Length = hacker1.length | ||
let h2Length = hacker2.length | ||
if (h1Length > h2Length) { | ||
console.log(`The driver has the longest name. It has ${h1Length} characters.`) | ||
} else if (h1Length < h2Length) { | ||
console.log(`Yo, Navigator got the longest name. It has ${h2Length} characters.`) | ||
} else { | ||
console.log(`Wow, you both got equally long names, ${h2Length} characters.`) | ||
} | ||
hacker1.toUpperCase().split('').join(' ') | ||
hacker1.split('').reverse().join('') | ||
let harray = [hacker1.toUpperCase(), hacker2.toUpperCase()].sort() | ||
console.log(harray) | ||
if (hacker2.toUpperCase()== hacker1.toUpperCase()) { | ||
console.log(`What?! You both got the same name.`) | ||
} | ||
else if (harray[0]== hacker1.toUpperCase()) { | ||
console.log(`The driver's name goes first`) | ||
} else if (harray[0]== hacker2.toUpperCase()) { | ||
console.log(`Yo, the navigator goes first definately.`) | ||
} | ||
// Palindrome and Lorem ipsum generator | ||
let palindromeText = prompt('Please enter Palindrome text.') | ||
let cleanText = palindromeText.replace(/[^A-Z\d]/gi, '').toUpperCase() | ||
let okTick = false; | ||
for (i=0; i<Math.floor((cleanText.length)/2); i++) | ||
{ | ||
if (cleanText[i]===cleanText[cleanText.length-1-i]) { | ||
okTick = true; | ||
} else { | ||
okTick = false; | ||
break; | ||
} | ||
} | ||
if (okTick === true) { | ||
console.log('It is a Palindrome!!! ;)') | ||
} else { | ||
console.log('It is not a Palindrome ;(') | ||
} |
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.