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
| const path = require('path'); | |
| const child = require('child_process'); | |
| const browserSync = require('browser-sync'); | |
| const browserify = require('browserify'); | |
| const watchify = require('watchify'); | |
| const log = require('fancy-log'); | |
| const source = require('vinyl-source-stream'); | |
| const streamify = require('gulp-streamify'); | |
| const gulp = require('gulp'); |
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
| import os, sys | |
| import json, re | |
| import random | |
| import wikipedia | |
| from urllib import request | |
| from time import sleep | |
| import pandas as pd | |
| MIN_SET = 31 | |
| MAX_SET = 118 |
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
| ''' | |
| -> CONTEXT-FREE GRAMMAR <- | |
| expr --> expr PLUS term | expr MINUS term | term | |
| term --> term TIMES factor | term DIVIDE factor | factor | |
| factor --> exponent POW factor | exponent | |
| exponent --> MINUS exponent | final | |
| final --> DIGIT | ( expr ) | |
| ''' |
NewerOlder