Skip to content
View Trevahok's full-sized avatar
  • Chennai
Block or Report

Block or report Trevahok

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
Trevahok/README.md

Hey, didn’t see you there! Welcome to Trevahok’s lair.

Known in the mortal realm as Vignesh, Trevahok is a curious creature. He believes in precision and "beauty" in code, despite being the only person to ever see his code. He is a self-proclaimed disciple of the sect, Zen of Python.

trevahok

More about my work at: Trevahok's Portfolio

 trevahok

Blogs posts

 trevahok

trevahok trevahok @trevahok trevahok trevahok trevahok trevahok vighneshss trevahok trevahok

Pinned

  1. whatsup-frontend whatsup-frontend Public

    Whatsup is a realtime chat application that is not whatsapp. Written in Reactjs.

    JavaScript 1

  2. DRF-rest-api-starter-pack DRF-rest-api-starter-pack Public

    An awesome REST API generator template using DRF as base.

    Python 4 1

  3. sugrfree-rest sugrfree-rest Public

    A REST API generator based on express for SugrFree - AI based diet system.

    JavaScript

  4. stl containers and time complexity.md stl containers and time complexity.md
    1
    |  Function | Creation | Insertion| Updation| Deletion| Search| Notes | 
    2
    | ---- | ---- | ---- | ---- | ---- | ---- |  ---- | 
    3
    | vector<T> | O(n) | O(1) | O(1) | O(n) | O(n) |  Insertion and deletion inbetween is heavy, push_back and pop_back is amortized to O(1) | 
    4
    | deque | O(1) | O(1)| O(1) | O(1) | O(n) | Insertion nad deletion is possible at both ends of the list |
    5
    | stack | O(1) | O(1) | NA | O(1) | O(n) | Insertion and deletion is possible only at the top|
  5. educayshun educayshun Public

    Educayshun - your learning buddy. A coursera style platform for enrolling and teaching courses online.

    JavaScript