Skip to content

Commit 03919d6

Browse files
authored
Merge pull request prateekiiest#26 from BinSquare/master
prateekiiest#20 Filled in missing projects to README
2 parents 6d1ea4f + d7c34b8 commit 03919d6

File tree

1 file changed

+27
-8
lines changed

1 file changed

+27
-8
lines changed

README.md

+27-8
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,17 @@ New to Python? Take a look [here](https://github.com/prateekiiest/Code-Sleep-Pyt
2121
* [Translations of Hamlet](https://github.com/prateekiiest/Code-Sleep-Python#translations-of-hamlet)
2222
* [Classification](https://github.com/prateekiiest/Code-Sleep-Python#classification)
2323
* [Whisky Classification](https://github.com/prateekiiest/Code-Sleep-Python#whisky-classification)
24-
* [Bird Migration](https://github.com/prateekiiest/Code-Sleep-Python#whisky-classification)
25-
* [Social Network Analysis](https://github.com/prateekiiest/Code-Sleep-Python#whisky-classification)
26-
24+
* [Bird Migration](https://github.com/prateekiiest/Code-Sleep-Python#Bird_mirgation)
25+
* [Social Network Analysis](https://github.com/prateekiiest/Code-Sleep-Python#social_network)
26+
* [Prime](https://github.com/prateekiiest/Code-Sleep-Python#Prime)
27+
* [Website status check](https://github.com/prateekiiest/Code-Sleep-Python#website_status_check)
2728
----------------------------------
2829

2930
### Tic-Tac-Toe
3031

3132
Tic-Tac-Toe (or noughts and crosses) is a simple strategy game in which two players take turns placing a mark on a 3x3 board, attempting to make a row, column, or diagonal of three with their mark. In this homework, we will use the tools we've covered in the past two weeks to create a Tic-Tac-Toe simulator and evaluate basic winning strategies.
3233

33-
![](https://upload.wikimedia.org/wikipedia/commons/8/8e/TicTacToe-6549127nnXOp.gif)
34-
35-
Players soon discover that best play from both parties leads to a draw.
36-
37-
Because of the simplicity of Tic-Tac-Toe, it is often used as a pedagogical tool for teaching the concepts of good sportsmanship and the branch of artificial intelligence that deals with the searching of game trees. It is straightforward to write a computer program to play Tic-Tac-Toe perfectly, to enumerate the 765 essentially different positions (the state space complexity), or the 26.830 possible games up to rotations and reflections (the game tree complexity) on this space.
34+
![](https://upload.wikimedia.org/wikipedia/commons/8/8e/TicTacToe-6549127nnXOp.gif) Players soon discover that best play from both parties leads to a draw. Because of the simplicity of Tic-Tac-Toe, it is often used as a pedagogical tool for teaching the concepts of good sportsmanship and the branch of artificial intelligence that deals with the searching of game trees. It is straightforward to write a computer program to play Tic-Tac-Toe perfectly, to enumerate the 765 essentially different positions (the state space complexity), or the 26.830 possible games up to rotations and reflections (the game tree complexity) on this space.
3835

3936
**[CODE](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/tic-tac-toe/code.py)**
4037

@@ -100,6 +97,28 @@ Homophily is a network characteristic. Homophily occurs when nodes that share an
10097

10198
----------------------------------------------------
10299

100+
### Prime number finder
101+
102+
The implementation of Sieve of Eratosthenes is used to find prime numbers.
103+
104+
![](https://i.pinimg.com/564x/cc/c7/55/ccc7554b4ae9ee9781b752832224f3ef--sieve-of-eratosthenes-prime-factorization.jpg)
105+
106+
**[Code](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/Prime/code.py)**
107+
108+
----------------------------------------------------
109+
110+
#### Website status check
111+
112+
A simple website crawler to check the return code of a website. It returns with a message on whether the website is online, redirected, or not found.
113+
114+
![](http://yootheme.com/media/docs/assets/images/warp/error_pages_404.jpg)
115+
116+
**[Code](https://github.com/prateekiiest/Code-Sleep-Python/blob/master/website_status_check/website_status_check.py)**
117+
118+
119+
----------------------------------------------------
120+
121+
103122
## Getting started with Python
104123

105124
New to Python? No problem! Take a look at the following resources:

0 commit comments

Comments
 (0)