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
| ## Binary and Bitwise Operators | |
| Binary Digit: | |
| - What is 2^5 in binary? | |
| - What is 2^5 - 1 in binary? | |
| - What is the general rule for binary numbers which are of the form 2^n or 2^n - 1? | |
| Two's Complement: | |
| - Implement a function that takes in an integer and prints out its two's complement value by following the algorithm described above. | |
| Hint: to invert the bits of a number you can use the "~" operator. For example ~25 will invert the bits of the integer 25. |
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
| isEven has constant run time complexity (O(1)) | |
| areYouHere has polynomial run time complexity (O(n^2)) | |
| doubleArrayValues has linear run time complexity (O(n)) | |
| naiveSearch has linear run time complexity (O(n)) | |
| createPairs has polynomial run time complexity (O(n^2)) | |
| generateFib has linear run time complexity (O(n)) | |
| efficientSearch has logarithmic run time complexity (O(log n)) | |
| findRandomElement has constant run time complexity (O(1)). | |
| isPrime has linear run time complexity (O(n)) |
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
| I met with Rasheed who is Amazon Flex Driver. He tested the app and his feedback was that input fields | |
| for time block needs be responsive by providing suggestion/ drop down menu, Also hide tip field from the form. | |
| I went a head and added the native date picker so its easier for the user to choose the date, also I did the same implementation | |
| for the time entry. I also hide the tip field. | |
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
| // BrowserRouter is the router implementation for HTML5 browsers (vs Native). | |
| // Link is your replacement for anchor tags. | |
| // Route is the conditionally shown component based on matching a path to a URL. | |
| // Switch returns only the first matching route rather than all matching routes. | |
| import { | |
| BrowserRouter as Router, | |
| Link, | |
| Route, | |
| Switch, | |
| } from 'react-router-dom'; |
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
| As a user, I should be able to register. | |
| As a user, I should be able to login after registeration. | |
| As a user, I should be able to add new trip. | |
| As a user, I should be able save my trips. | |
| As a user, I should be able to view my trips. | |
| As a user, I should be able to update my trips. | |
| As a user, I should be able to view claculated hourly tips. | |
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
| Purpose statement and app name: | |
| Shadow is web appliction service that help Amazon Felx drivers to track thier trips. | |
| - Amazon Felx drivers can view their historical data online. | |
| - Amazon Felx drivers can view charts of thier hourly revenue and Tips. | |
| - Amazon Felx drivers can view past fares and recommends profitable blocks (shift). | |
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
| https://efficacious-bell.glitch.me/ | |
| https://flowery-node.glitch.me/ |
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
| https://grave-schooner.glitch.me/ | |
| https://noiseless-racer.glitch.me/ |
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
| https://glitch.com/edit/#!/puffy-tin?path=src/components/surprise.js:28:1 | |
| https://glitch.com/edit/#!/ebony-pea?path=src/components/rate-calculator.js:28:32 |
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
| https://glitch.com/edit/#!/adorable-bagel?path=src/components/navigation-bar.js:25:0 | |
| https://glitch.com/edit/#!/orange-macaroni?path=src/components/address-book.js:13:4 |
NewerOlder