This file contains 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
public abstract class People { | |
abstract public String getNationality(); | |
abstract public String getAdjective(); | |
public interface Thinkable { | |
String getOppose(); | |
String getConsensus(); | |
} | |
public String getDeclaration() { |
This file contains 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 sys | |
import numpy as np | |
import json | |
import pandas | |
from io import StringIO | |
import re | |
import time | |
from itertools import chain | |
""" |