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 datetime | |
| import pickle | |
| import os.path | |
| from googleapiclient.discovery import build | |
| from google_auth_oauthlib.flow import InstalledAppFlow | |
| from google.auth.transport.requests import Request | |
| SCOPES = 'https://www.googleapis.com/auth/calendar.events' | |
| def main(): | 
  
    
      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 argparse | |
| from string import lowercase | |
| alphabet = list(lowercase) | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('--n', help='size (<= 27)', type=int) | |
| args = parser.parse_args() | |
| assert args.n <= 27, 'n > 27 not allowed' |