Skip to content
View Aryansh-S's full-sized avatar
🧸
life always gets better<3
🧸
life always gets better<3

Block or report Aryansh-S

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Aryansh-S/README.md

Links

Authoring USACO Problems

In reverse chronological order and stratified by division, here is the list of released problems, not including contributions to training camp selection tests:

Pinned Loading

  1. USACO USACO Public

    Algorithms, data structures, and problems in competitive programming up to USACO Platinum

    C++ 48 5

  2. fastdark.vim fastdark.vim Public

    A minimalistic One Dark color scheme for Neovim and Vim (use with Neovim Treesitter or Vim Polyglot)

    Vim Script 5

  3. llm_frontend llm_frontend Public

    Python 1

  4. sql_query_visualizer sql_query_visualizer Public

    HTML 1

  5. Automatically Generate LaTeX Tables ... Automatically Generate LaTeX Tables from Pandas DataFrames
    1
    import pandas as pd
    2
     
    3
    def latex_format(value):
    4
     if isinstance(value, pd.DataFrame): # full df case
    5
     value.columns = [latex_format(col) for col in value.columns]