Skip to content

Instantly share code, notes, and snippets.

View patelrohan's full-sized avatar
🤓

Rohan Patel patelrohan

🤓
  • Dynamic Island
View GitHub Profile
@patelrohan
patelrohan / FirstUniqueInt.m
Created November 10, 2017 07:56
Find first unique integer from an array
//
// main.m
// Algorithm
//
// Created by Rohan Patel on 11/10/17.
// Copyright © 2017 Rohan Patel. All rights reserved.
//
/*
Note: I found two mistakes in the proposed solution during the interview:
@patelrohan
patelrohan / bootstrap-breakpoint.css
Created April 12, 2023 05:11 — forked from WebDevSimplified/bootstrap-breakpoint.css
This stylesheet adds text describing the current Bootstrap Breakpoint in the top right corner of the screen.
body {
margin-top: 40px; /* This margin just makes the text easier to read. You can remove it if you want since it can mess with your other styles. */
}
body::before {
content: "XS";
color: red;
font-size: 2rem;
font-weight: bold;
position: fixed;