GitHub (W7D1) - Learning Objectives
GitHub
- You will be able to participate in the social aspects of GitHub by starring repositories, following other developers, and reviewing your followers
- You will be able to use Markdown to write code snippets in your README files
- You will craft your GitHub profile and contribute throughout the course by keeping your “gardens green”
- You will be able to identify the basics of a good Wiki entries for proposals and minimum viable products
- You will be able to identify the basics of a good project README that includes technologies at the top, images, descriptions and code snippets
Binary Search
- Explain the complexity of and write functions that performs a binary search on a sorted array of numbers.
Implement recursive binary search that returns true/false if the target number is present
Implement iterative binary search that returns true/false if the target number is present
Implement iterative binary search that returns the index or -1 if not found