Skip to content

Instantly share code, notes, and snippets.

View yashwalankar's full-sized avatar

Yash Walankar yashwalankar

View GitHub Profile
@yashwalankar
yashwalankar / list.md
Created January 9, 2021 06:12 — forked from ih2502mk/list.md
Quantopian Lectures Saved
@yashwalankar
yashwalankar / leetCode1266.java
Created February 12, 2020 16:24
LeetCode Minimum Time Visiting All Points
class Solution {
public int minTimeToVisitAllPoints(int[][] points) {
int time=0;
int x;
int y;
for(int i=1;i<points.length;i++){
x=Math.abs(points[i][0]-points[i-1][0]);
y=Math.abs(points[i][1]-points[i-1][1]);
@yashwalankar
yashwalankar / INSTALL.md
Created February 11, 2020 19:40 — forked from takeit/INSTALL.md
Write to NTFS on macOS Sierra (osxfuse + ntfs-3g)
  1. Install osxfuse:
brew cask install osxfuse
  1. Reboot your Mac.

  2. Install ntfs-3g: