Skip to content

Instantly share code, notes, and snippets.

View puranik3's full-sized avatar
🏠
Working from home

Prashanth Puranik puranik3

🏠
Working from home
View GitHub Profile
<template>
<div class="row">
<div class="col-12">
<h3>
Sessions in this workshop
</h3>
<hr />
</div>
<div
v-if="loading"
@puranik3
puranik3 / QuickSortDemo.java
Last active February 21, 2023 17:33
Quick sort
package quicksort;
import java.util.Arrays;
public class QuickSortDemo {
private static void swap( int[] arr, int p1, int p2 ) {
int temp = arr[p1];
arr[p1] = arr[p2];
arr[p2] = temp;
}