Skip to content

Instantly share code, notes, and snippets.

View anddev68's full-sized avatar

anddev68 anddev68

View GitHub Profile
@anddev68
anddev68 / Python
Last active January 27, 2016 03:36
extractbb専用サーバ
from bottle import route,run,template,request,response
import commands
# route decoder
# receiver
@route('/send',method='POST')
def send():
# file save
@anddev68
anddev68 / codefes2015_B_A
Last active October 25, 2015 14:20
CODEFES2015 予選B 問題A
import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
StringBuilder sb = new StringBuilder();
for(int i=0; i<str.length(); i++){
char c = str.charAt(i);
boolean flag = false;
@anddev68
anddev68 / runner_b
Last active August 29, 2015 14:08
CODE RUNNER 予選B
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Timers;
namespace CodeB