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
0 | ||
---|---|---|
0 | 0 | |
1 | 0 | |
2 | 0 | |
3 | 0 | |
4 | 0 | |
5 | 0 | |
6 | 0 | |
7 | 0 | |
8 | 0 |
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
0 | ||
---|---|---|
0 | 0 | |
1 | 0 | |
2 | 0 | |
3 | 0 | |
4 | 0 | |
5 | 0 | |
6 | 0 | |
7 | 0 | |
8 | 0 |
We can't make this file beautiful and searchable because it's too large.
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
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
The Project Gutenberg EBook of The Picture of Dorian Gray, by Oscar Wilde | |
This eBook is for the use of anyone anywhere at no cost and with | |
almost no restrictions whatsoever. You may copy it, give it away or | |
re-use it under the terms of the Project Gutenberg License included | |
with this eBook or online at www.gutenberg.org | |
Title: The Picture of Dorian Gray | |
13 chapter version |
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
X.1 | % Morally acceptable | |
---|---|---|
2001 | 40 | |
2002 | 38 | |
2003 | 44 | |
2004 | 42 | |
2005 | 45 | |
2006 | 44 | |
2007 | 47 | |
2008 | 48 | |
2009 | 49 |
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
from IPython.display import display, HTML | |
import time | |
import math | |
import re | |
# Created at: 23rd October 2018 | |
# by: Tolga Atam | |
# v2.1.0 Updated at: 15th March 2021 | |
# by: Tolga Atam | |
# from https://github.com/tolgaatam/ColabTurtle/blob/master/ColabTurtle/Turtle.py |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
void strsplit1(char *string, char sep, char *first, char *second) { | |
char *sep_ptr = strchr(string, sep); | |
int n = sep_ptr - string; | |
strncpy(first, string, n); | |
first[n] = '\0'; | |
strcpy(second, sep_ptr+1); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder