Skip to content

Instantly share code, notes, and snippets.

View web3dev6's full-sized avatar
🎯
Focusing

Sarthak Joshi web3dev6

🎯
Focusing
View GitHub Profile
@web3dev6
web3dev6 / .deps...github...Arachnid...solidity-stringutils...strings.sol
Created November 6, 2021 07:09
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.0+commit.c7dfd78e.js&optimize=false&runs=200&gist=
./src/strings.sol
@web3dev6
web3dev6 / Stack_LinkedList_Implementation_OOP.cpp
Created April 27, 2019 15:05
An object oriented implementation of stack using arrays in C++
// Stack - Object oriented implementation using linked lists
#include <iostream>
using namespace std;
class Node
{
public:
Node* next;
int data;