I hereby claim:
- I am slayerjain on github.
- I am slayerjain (https://keybase.io/slayerjain) on keybase.
- I have a public key whose fingerprint is 59E4 8F65 7601 1145 1ED7 DD56 FE35 B919 CBA5 BD78
To claim this, I am signing this object:
// external.go | |
package external | |
import ( | |
"context" | |
"encoding/json" | |
"errors" | |
"fmt" | |
"net/http" | |
"time" |
package main | |
import ( | |
"flag" | |
"fmt" | |
"log" | |
"github.com/keploy/go-sdk/integrations/kfasthttp" | |
"github.com/keploy/go-sdk/keploy" | |
"github.com/valyala/fasthttp" |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
fmt.Println(time.Now()) | |
} |
0x3fa94800b480e37ab92090f265bad340de617d0f |
0xB1BF2c7B7Ac8223EA7940d3C9FAdbCbA500Da525 |
I hereby claim:
To claim this, I am signing this object:
#include <stdio.h> | |
#include <math.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
void Merge(int numArray[], int startingElement, int midElement, int endingElement) { | |
int lastOfFirstArray = midElement - startingElement ; | |
int lastOfSecondArray = endingElement - midElement - 1; | |
int *firstArray; | |
int *secondArray; |
#include <iostream> | |
using namespace std; | |
int main() { | |
int t = 0; | |
scanf("%d", &t); | |
for (int k = 0; k < t; k++) { | |
long amount_of_water = 0; |
def add(b,n): | |
"""it gives the sum """ | |
b = b+n | |
def expint(b,n): | |
"""It gives you the value of | |
b multiples n times """ | |
if(n==0): | |
b=1 | |
else: |