Skip to content

Instantly share code, notes, and snippets.

View godtaehee's full-sized avatar
🦜
I'm developer

Taehee Evan Kim godtaehee

🦜
I'm developer
View GitHub Profile
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/interfaces/IERC20.sol';
import '@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.sol';
import '../libraries/TransferHelper.sol';
contract MintPosition {
test
🌞 Morning 140 commits ████▌░░░░░░░░░░░░░░░░ 22.0%
🌆 Daytime 142 commits ████▋░░░░░░░░░░░░░░░░ 22.3%
🌃 Evening 199 commits ██████▌░░░░░░░░░░░░░░ 31.3%
🌙 Night 155 commits █████░░░░░░░░░░░░░░░░ 24.4%
#include <iostream>
#include <cstring>
using namespace std;
int main(){
int n;
int sum = 0;
#include <iostream>
using namespace std;
int mypow(int x, int y){
if(y == 0)
return 1;
int save = x;
#include <iostream>
#include <cstring>
using namespace std;
int main(){
char line[1000000];
int count = 0;
#include <iostream>
#include <cstring>
using namespace std;
int main(){
char line[1000000];
int count = 0;
#include <iostream>
using namespace std;
int main(){
int N;
int x, y;
int min = 10000;
#include <iostream>
using namespace std;
int counting = 0;
class Node{
public:
int value;
Node* ptr;
@godtaehee
godtaehee / Main.cpp
Created April 27, 2019 17:57
#BinarySearchTree
#include "cBinarySearchTree.h"
#include <iostream>
using namespace std;
int main(){
char cmd;
int n, x;
cBinarySearchTree<int> tree;
cin>>n;
for(int i = 0; i<n; i++){