Skip to content

Instantly share code, notes, and snippets.

View patilarpith's full-sized avatar

Patil Arpith patilarpith

View GitHub Profile
@patilarpith
patilarpith / solution.c
Created June 11, 2015 11:37
RGB32 to RGB888
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#define getR(value) ((value & 0x0000FF00) >> 8)
#define getG(value) ((value & 0x00FF0000) >> 16)
#define getB(value) ((value & 0xFF000000) >> 24)
int main() {
@patilarpith
patilarpith / solution.py
Created August 9, 2016 17:45
Quora Answer Classifier
import sys
import numpy as np
f = sys.stdin
# f = open("../input00.txt")
[n, m] = map(int, f.readline().strip().split())
X = np.zeros((n, m), dtype="float")
Y = np.zeros(n)
# Start of HEAD
require 'json'
TestStruct = Struct.new(
:testcase_id,
:testcase_input_path,
:testcase_output_path,
:testcase_expected_output_path,
:metadata_file_paths,
:submission_code_path,
@patilarpith
patilarpith / CustomChecker.cpp
Last active September 20, 2016 09:32
Custom checker in C++
// Start of HEAD
#include <map>
#include <cmath>
#include <cstdio>
#include <vector>
#include <fstream>
#include <iostream>
#include <algorithm>
#ifdef __APPLE__
#include <json/json.h>
// Start of HEAD
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
// End of HEAD
@patilarpith
patilarpith / solution.cpp
Created January 27, 2020 05:25
Unique hats
#include <iostream>
#include <vector>
#include <unordered_set>
using namespace std;
template <class T>
void print(vector<T> items) {
for(T item:items)
cout << item << " ";
-- [30599] debug = True
-- [30599] db_host =
-- [30599] Redshift Column Encoding Utility Configuration
-- [30599] Created Cloudwatch Emitter in us-east-1
-- [30599] Connect [30599]
-- [30599] set statement_timeout = '1200000'
-- [30599] [30599] Running set statement_timeout = '1200000'
-- [30599] Success.
-- [30599] set application_name to 'ColumnEncodingUtility-v.9.3.4'
-- [30599] [30599] Running set application_name to 'ColumnEncodingUtility-v.9.3.4'
@patilarpith
patilarpith / Solution.scala
Last active February 18, 2020 20:17
Custom checker in scala
// Start of HEAD
import org.json.simple.JSONArray
import org.json.simple.JSONObject
import org.json.simple.parser.JSONParser
import collection.JavaConversions._
// End of HEAD
// Start of Body
/**
@patilarpith
patilarpith / CustomChecker.py
Last active April 20, 2020 20:11
Custom checker in Python
# Start of HEAD
import json
import string
import sys
# End of HEAD
# Start of BODY
'''
TestStruct::
@patilarpith
patilarpith / CustomCheckerBody.java
Last active January 21, 2023 09:04
Custom-Checker body section for list of 5 prime numbers under 100
// Start of BODY
public class CustomChecker {
static boolean is_prime_number(int n) {
for(int i=2;i<n;i++) {
if(n%i==0)
return false;
}
return true;