Skip to content
View DrDabbidy's full-sized avatar
📖
Middlemarch
📖
Middlemarch
  • Toronto, Ontario

Block or report DrDabbidy

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
DrDabbidy/README.md

Hi there 👋

My name's David! I study philosophy and computer science at University of Toronto. I'm currently working at Flint Learning Solutions as a software developer.

Currently learning 📚

  • Haskell
  • GraphQL

Pinned Loading

  1. wordle-guesser wordle-guesser Public

    Forked from grispoli03/wordle-guesser

    Gives you the optimal guess in wordle based on the hints you've been given.

    Python

  2. Sudoku Solver (backtracking) Sudoku Solver (backtracking)
    1
    import copy
    2
    
                  
    3
    
                  
    4
    def section_is_valid(section: list[int]) -> bool:
    5
        return all(section.count(i + 1) <= 1 for i in range(9))    
  3. surgical-assistant surgical-assistant Public

    A bot for my Discord server.

    Python 1 2

  4. crime-during-COVID-analysis crime-during-COVID-analysis Public

    Python

  5. minesweeper-clone minesweeper-clone Public

    A clone of the classic Windows game, Minesweeper! Made in Java Swing.

    Java