This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from bottle import route,run,template,request,response | |
| import commands | |
| # route decoder | |
| # receiver | |
| @route('/send',method='POST') | |
| def send(): | |
| # file save |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Text; | |
| using System.Timers; | |
| namespace CodeB |
NewerOlder